Skip to content
  1. May 25, 2019
  2. May 21, 2019
  3. May 07, 2019
  4. Apr 01, 2019
  5. Mar 28, 2019
  6. Mar 22, 2019
  7. Mar 19, 2019
  8. 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
  9. Feb 21, 2019
  10. Jan 21, 2019
  11. Jan 14, 2019
  12. Jan 11, 2019
  13. Dec 19, 2018
  14. Dec 18, 2018
  15. Dec 17, 2018