Skip to content
  1. May 27, 2019
  2. May 25, 2019
  3. May 21, 2019
  4. May 07, 2019
  5. Apr 01, 2019
  6. Mar 28, 2019
  7. Mar 22, 2019
  8. Mar 19, 2019
  9. Feb 27, 2019
    • Giovanni Bussi's avatar
      Removed duplicates keywords · 8ed9697a
      Giovanni Bussi authored
      Can be found with the following python snippet
      
      import re
      plumedDictionary={}
      with open("/opt/local/lib/plumed/vim/syntax/plumed.vim") as fin:
          for line in fin:
              if re.match("^let b:plumedDictionary\[.*$",line):
                  line=re.sub("^let b:","",line)
                  exec(line,{'__builtins__': None},{'plumedDictionary':plumedDictionary})
      for key in plumedDictionary.keys():
          diction={}
          for opt in plumedDictionary[key]:
              if(opt['word'] in diction):
                  print(key,opt['word'])
              diction[opt['word']]=1
      8ed9697a
  10. Feb 21, 2019
  11. Jan 21, 2019
  12. Jan 14, 2019
  13. Jan 11, 2019
  14. Dec 19, 2018
  15. Dec 18, 2018
  16. Dec 17, 2018