diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-08-25 21:54:00 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-08-25 21:54:00 -0400 |
commit | 7bc627b3c8d53e0f45985b35835e0b339dd2c006 (patch) | |
tree | f0be6606ebb224e542107c1cc8615324c9e74e08 /runtime/ftplugin | |
parent | 4af6ec746c821078859469adc46cf7bef5c629fa (diff) | |
parent | db2aa27df17742a46f2861a53f8b61826e0318ea (diff) | |
download | rneovim-7bc627b3c8d53e0f45985b35835e0b339dd2c006.tar.gz rneovim-7bc627b3c8d53e0f45985b35835e0b339dd2c006.tar.bz2 rneovim-7bc627b3c8d53e0f45985b35835e0b339dd2c006.zip |
Merge #5210 'vim-patch:7.4.1898 + :Man modifiers support'.
Diffstat (limited to 'runtime/ftplugin')
-rw-r--r-- | runtime/ftplugin/man.vim | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/runtime/ftplugin/man.vim b/runtime/ftplugin/man.vim index 6a9ad27956..fddfee3c31 100644 --- a/runtime/ftplugin/man.vim +++ b/runtime/ftplugin/man.vim @@ -33,12 +33,7 @@ setlocal tabstop=8 setlocal softtabstop=8 setlocal shiftwidth=8 -setlocal nonumber -setlocal norelativenumber -setlocal foldcolumn=0 -setlocal colorcolumn=0 -setlocal nolist -setlocal nofoldenable +call man#set_window_local_options() if !exists('g:no_plugin_maps') && !exists('g:no_man_maps') nmap <silent> <buffer> <C-]> <Plug>(Man) |