mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
66220d164a
This reverts commit 4382d2ed56
.
The story for this feature was left in an incomplete state. It was never
the intention to unilaterally fold all information, only the ones that
did not contain relevant information. This feature does more harm than
good in its incomplete state.
19 lines
395 B
VimL
19 lines
395 B
VimL
" Vim filetype plugin
|
|
" Language: Nvim :checkhealth buffer
|
|
" Last Change: 2022 Nov 10
|
|
|
|
if exists("b:did_ftplugin")
|
|
finish
|
|
endif
|
|
|
|
runtime! ftplugin/help.vim
|
|
|
|
setlocal wrap breakindent linebreak
|
|
let &l:iskeyword='!-~,^*,^|,^",192-255'
|
|
|
|
if exists("b:undo_ftplugin")
|
|
let b:undo_ftplugin .= "|setl wrap< bri< lbr< kp< isk<"
|
|
else
|
|
let b:undo_ftplugin = "setl wrap< bri< lbr< kp< isk<"
|
|
endif
|