diff options
author | June McEnroe <june@causal.agency> | 2020-12-19 22:41:39 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-12-19 22:41:39 -0500 |
commit | b97fc904454bfcf7d2533211bfb835e801ebcaef (patch) | |
tree | ef27ba0422e4ae4904f1d738e0bd0ae7cb62f63b /home/.config/nvim/plugin/rfc.vim | |
parent | Sort RFC tags file (diff) | |
download | src-b97fc904454bfcf7d2533211bfb835e801ebcaef.tar.gz src-b97fc904454bfcf7d2533211bfb835e801ebcaef.zip |
Move :RFC to plugin script
Diffstat (limited to 'home/.config/nvim/plugin/rfc.vim')
-rw-r--r-- | home/.config/nvim/plugin/rfc.vim | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/home/.config/nvim/plugin/rfc.vim b/home/.config/nvim/plugin/rfc.vim new file mode 100644 index 00000000..d0aac655 --- /dev/null +++ b/home/.config/nvim/plugin/rfc.vim @@ -0,0 +1,26 @@ +if !exists('g:rfc_path') + let g:rfc_path = '~/src/rfc' +endif + +function! s:RFC(number) + let number = (empty(a:number) ? '-index' : a:number) + let path = expand(g:rfc_path . '/rfc' . number . '.txt.gz') + if filereadable(path) + execute 'silent' 'noswapfile' 'view' path + else + echohl ErrorMsg | echo 'No such RFC' number | echohl None + endif +endfunction + +function! s:BufRead() + setlocal readonly + setlocal keywordprg=:RFC + setlocal iskeyword=a-z,A-Z,48-57,.,[,],-,_ + nmap <buffer> <silent> gO :call search('^Table of Contents', 'bcs')<CR> +endfunction + +command! -bar -nargs=? RFC call s:RFC(<q-args>) +augroup RFC + autocmd! + autocmd BufRead rfc*.txt.gz call s:BufRead() +augroup END |