💾 Archived View for gmi.noulin.net › gitRepositories › systemSetup › file › dotfiles › .vim › plugin… captured on 2024-07-09 at 02:57:47. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2023-01-29)
-=-=-=-=-=-=-
v.vim (299B)
1 if !has('python') && !has('python3') 2 finish 3 endif 4 5 function! RemoveComments() 6 if has('python') 7 pyfile ~/.vim/plugin/rc.py 8 elseif has('python3') 9 py3file ~/.vim/plugin/rc.py 10 endif 11 endfunc 12 13 command! Rc call RemoveComments() 14 map , :Rc<CR>