mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 19:25:11 -07:00
9fb9d2929f
- Define a collection of legal characters when parsing page and section in `s:parse_page_and_section()` instead of relying on 'iskeyword', which is unreliable. - Allow non-numeric section names (e.g., `3c`). - Simplify argument handling in `man#get_page()` to accommodate non-numeric section names. Fixes #4165.
38 lines
1009 B
VimL
38 lines
1009 B
VimL
" Vim filetype plugin file
|
|
" Language: man
|
|
" Maintainer: SungHyun Nam <goweol@gmail.com>
|
|
|
|
if has('vim_starting') && &filetype !=# 'man'
|
|
finish
|
|
endif
|
|
|
|
" Only do this when not done yet for this buffer
|
|
if exists('b:did_ftplugin')
|
|
finish
|
|
endif
|
|
let b:did_ftplugin = 1
|
|
|
|
" Ensure Vim is not recursively invoked (man-db does this)
|
|
" when doing ctrl-[ on a man page reference.
|
|
if exists('$MANPAGER')
|
|
let $MANPAGER = ''
|
|
endif
|
|
|
|
setlocal iskeyword+=\.,-,(,)
|
|
|
|
setlocal buftype=nofile noswapfile
|
|
setlocal nomodifiable readonly bufhidden=hide nobuflisted tabstop=8
|
|
|
|
if !exists("g:no_plugin_maps") && !exists("g:no_man_maps")
|
|
nnoremap <silent> <buffer> <C-]> :call man#get_page(v:count, expand('<cword>'))<CR>
|
|
nnoremap <silent> <buffer> <C-T> :call man#pop_page()<CR>
|
|
nnoremap <silent> <nowait><buffer> q <C-W>c
|
|
if &keywordprg !=# ':Man'
|
|
nnoremap <silent> <buffer> K :call man#get_page(v:count, expand('<cword>'))<CR>
|
|
endif
|
|
endif
|
|
|
|
let b:undo_ftplugin = 'setlocal iskeyword<'
|
|
|
|
" vim: set sw=2:
|