spf13-vim
spf13-vim copied to clipboard
E117: Unknown function: textobj#sentence#init
I am opening a text file, and got these messages:
Error detected while processing FileType Auto commands for "text": E117: Unknown function: textobj#sentence#init E117: Unknown function: textobj#quote#init
That's because the plugins vim-textobj-sentence and vim-textobj-quote were not installed, in the .vimrc.bundles , you should replace such lines into Bundle 'preservim/vim-textobj-sentence'
. The pristine code Bundle 'reedes/vim-textobj-sentence'
were no longer valid.
您好!您的邮件已收到,我将会尽快地进行处理,谢谢来信!
Or you can specify the groups in .vimrc.before.local, let g:spf13_bundle_groups=['general', 'writing', 'neocomplete', 'programming', 'php', 'ruby', 'python', 'javascript', 'html', 'misc',]
, deleting the 'writing'
which will load the textobj series plugins.