diff options
author | June McEnroe <june@causal.agency> | 2020-12-19 01:02:02 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-12-19 01:02:02 -0500 |
commit | b00d251042ac3d87c42b2d7e44b08445797833ad (patch) | |
tree | fcc7714b5bd917396a470c77af332c2c8b1b2399 /home | |
parent | Include rfc-index.txt in RFC sync (diff) | |
download | src-b00d251042ac3d87c42b2d7e44b08445797833ad.tar.gz src-b00d251042ac3d87c42b2d7e44b08445797833ad.zip |
Open rfc-index.txt for :RFC without argument
Diffstat (limited to '')
-rw-r--r-- | home/.config/nvim/init.vim | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/home/.config/nvim/init.vim b/home/.config/nvim/init.vim index d4bad8eb..b814666b 100644 --- a/home/.config/nvim/init.vim +++ b/home/.config/nvim/init.vim @@ -36,7 +36,10 @@ nmap <leader>l :0read ~/src/etc/agpl.c<CR>'' nmap <leader>L :0read ~/src/etc/gpl.c<CR>'' nmap <leader>d :0delete<CR>:0read !date +'.Dd \%B \%e, \%Y'<CR> -command! -nargs=1 RFC :silent noswapfile view ~/src/rfc/rfc<args>.txt.gz +command! -bar -nargs=? RFC + \ if !empty(<q-args>) | + \ silent noswapfile view ~/src/rfc/rfc<args>.txt.gz | + \ else | RFC -index | endif autocmd BufRead rfc*.txt.gz \ setlocal keywordprg=:RFC iskeyword=a-z,A-Z,48-57,.,-,[,] | \ nmap <buffer> <silent> gO :call search('^Table of Contents', 'bcs')<CR> |