summary refs log tree commit diff
path: root/home/.config/nvim/init.vim
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-12-18 23:49:12 -0500
committerJune McEnroe <june@causal.agency>2020-12-18 23:49:12 -0500
commit6c77cde8c2be0fd0216915f09d601115dd1a053a (patch)
tree4adc31aa9dc30cb2d0c5fe85f18ec98ce9df8955 /home/.config/nvim/init.vim
parentAdd scripts to download, compress and tag IETF RFCs (diff)
downloadsrc-6c77cde8c2be0fd0216915f09d601115dd1a053a.tar.gz
src-6c77cde8c2be0fd0216915f09d601115dd1a053a.zip
Add :RFC vim command to view IETF RFCs
This sets iskeyword so that ^] will work for the kinds of tags generated
by rfctags.pl, and keywordprg so that K on another RFC number will view
that one. It also binds gO to jump to the table of contents of the RFC.
Diffstat (limited to '')
-rw-r--r--home/.config/nvim/init.vim5
1 files changed, 5 insertions, 0 deletions
diff --git a/home/.config/nvim/init.vim b/home/.config/nvim/init.vim
index 9245ccf4..d4bad8eb 100644
--- a/home/.config/nvim/init.vim
+++ b/home/.config/nvim/init.vim
@@ -35,3 +35,8 @@ nmap <leader>a m':0/^#include <<CR>:nohlsearch<CR>O#include <
 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
+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>
ild: Remove added x509_verify.3 links 3.3.2June McEnroe 2021-04-18tls: Use EC_KEY_set_ex_dataJune McEnroe 2021-04-18Import LibreSSL 3.3.2June McEnroe 2021-03-05Bump version to 3.3.1p1 3.3.1p1June McEnroe 2021-03-05build: Add OpenSSL includes to libcompatJune McEnroe Some compat sources (getentropy_linux.c for example) require OpenSSL. Reported by Robert Scheck. 2020-12-15Import LibreSSL 3.3.1June McEnroe 2020-11-24Import LibreSSL 3.3.0June McEnroe 2020-10-22Import LibreSSL 3.2.2June McEnroe 2020-09-29Import LibreSSL 3.2.1June McEnroe 2020-09-29import: Add m4/ax_add_fortify_source.m4June McEnroe 2020-08-05build: Add README.7 to EXTRA_DIST 3.2.0June McEnroe 2020-08-03doc: Indicate that only OpenSSL 1.1.1b and newer workJune McEnroe