💾 Archived View for gmi.noulin.net › gitRepositories › systemSetup › file › dotfiles › .vim › plugin… captured on 2024-09-29 at 01:18:19. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2023-01-29)
-=-=-=-=-=-=-
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