dgy
/
hexagons
Archived
1
0
Fork 0
This repository has been archived on 2021-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
hexagons/.config/nvim/ftplugin/help.vim

55 lines
1.0 KiB
VimL

" Snippets from vim-help
" Credits: https://github.com/dahu/vim-help
if exists('b:did_ftplugin')
finish
endif
let b:did_ftplugin = 1
let s:save_cpo = &cpoptions
set cpoptions&vim
let b:undo_ftplugin = 'setlocal spell<'
setlocal nospell
setlocal nohidden
setlocal iskeyword+=:
setlocal iskeyword+=#
setlocal iskeyword+=-
setlocal nonumber
setlocal noruler
setlocal colorcolumn=0
setlocal signcolumn=no
wincmd L
" Quick close
nnoremap <silent><buffer> q :helpclose<CR>
" Jump to links with enter
nmap <buffer> <CR> <C-]>
" Jump back with backspace
nmap <buffer> <BS> <C-T>
" Skip to next option link
nmap <buffer> o /'[a-z]\{2,\}'<CR>
" Skip to previous option link
nmap <buffer> O ?'[a-z]\{2,\}'<CR>
" Skip to next subject link
nmap <buffer><nowait> s /\|\S\+\|<CR>l
" Skip to previous subject link
nmap <buffer> S h?\|\S\+\|<CR>l
" Skip to next tag (subject anchor)
nmap <buffer> t /\*\S\+\*<CR>l
" Skip to previous tag (subject anchor)
nmap <buffer> T h?\*\S\+\*<CR>l
let &cpoptions = s:save_cpo
" vim: set ts=2 sw=2 tw=80 noet :