systemSetup

system setup, configuration and dotfiles
git clone https://noulin.net/git/systemSetup.git
Log | Files | Refs | README | LICENSE

rc.py (139B)


      1 import vim
      2 
      3 i  = 0
      4 cb = vim.current.buffer
      5 for l in cb:
      6     if l[:2] == '# ':
      7         cb[i] = l[2:]
      8     if l == '':
      9         break
     10     i+=1