💾 Archived View for gmi.noulin.net › gitRepositories › systemSetup › file › dotfiles › .vim › plugin… captured on 2024-08-18 at 18:53:56. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2023-01-29)

-=-=-=-=-=-=-

systemSetup

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