summary refs log tree commit diff
path: root/home/.config/nvim
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-12-19 01:02:02 -0500
committerJune McEnroe <june@causal.agency>2020-12-19 01:02:02 -0500
commitc92045e4bba2c7d2870ca8f80757ecf78a3ad08d (patch)
tree4bfe688ebf5e74f90d035c353653df3075d88e5c /home/.config/nvim
parentInclude rfc-index.txt in RFC sync (diff)
downloadsrc-c92045e4bba2c7d2870ca8f80757ecf78a3ad08d.tar.gz
src-c92045e4bba2c7d2870ca8f80757ecf78a3ad08d.zip
Open rfc-index.txt for :RFC without argument
Diffstat (limited to 'home/.config/nvim')
-rw-r--r--home/.config/nvim/init.vim5
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>
-shared.c?id=74620f12e4f7e91cb0a0b4ca731e07272d1b65f6&follow=1'>Move functions for repolist output into ui-repolist.cLars Hjemli Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2006-12-11Move common output-functions into ui-shared.cLars Hjemli While at it, replace the cgit_[lib_]error constants with a proper function Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2006-12-11Rename config.c to parsing.c + move cgit_parse_query from cgit.c to parsing.cLars Hjemli Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2006-12-11Avoid infinite loops in caching layerLars Hjemli Add a global variable, cgit_max_lock_attemps, to avoid the possibility of infinite loops when failing to acquire a lockfile. This could happen on broken setups or under crazy server load. Incidentally, this also fixes a lurking bug in cache_lock() where an uninitialized returnvalue was used. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2006-12-11Let 'make install' clear all cachefilesLars Hjemli Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2006-12-11Fix cache algorithm loopholeLars Hjemli This closes the door for unneccessary calls to cgit_fill_cache(). Noticed by Linus. Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2006-12-10Add version identifier in generated filesLars Hjemli Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2006-12-10Add license file and copyright noticesLars Hjemli Signed-off-by: Lars Hjemli <hjemli@gmail.com> 2006-12-10Add caching infrastructureLars Hjemli