Show hidden characters /* vi:set ts=8 sts=4 sw=4 noet: * * VIM - Vi IMproved by Bram Moolenaar * Motif support by Robert Webb * * Do ":help uganda" in Vim to read copying and usage conditions. * Do ":help credits" in Vim to see a list of people who contributed. */ #if...
Show hidden characters /* vi:set ts=8 sts=4 sw=4 noet: * * VIM - Vi IMproved by Bram Moolenaar * * Do ":help uganda" in Vim to read copying and usage conditions. * Do ":help credits" in Vim to see a list of people who contributed. * See README.txt for an overview of ...
set hidden "实现全能补全功能,需要打开文件类型检测 "filetype plugin indent on "打开vim的文件类型自动检测功能 "filetype on "保存文件的格式顺序 set fileformats=dos,unix "置粘贴模式,这样粘贴过来的程序代码就不会错位了。 set paste "在所有模式下都允许使用鼠标,还可以是n,v,i,c等 set mouse=a " 恢...
"set showmatch " Show matching brackets. "set ignorecase " Do case insensitive matching "set smartcase " Do smart case matching "set incsearch " Incremental search "set autowrite " Automatically save before commands like :next and :make "set hidden " Hide buffers when they are abandoned "set...
" Use tab for trigger completion with characters ahead and navigate. " NOTE: Use command ':verbose imap <tab>' to make sure tab is not mapped by " other plugin before putting this into your config. inoremap <silent><expr> <TAB> \ pumvisible() ? "\<C-n>" : \ <SID>check_bac...
现在开发、写文章基本上已经离不开 vim了,写代码idea + vim 配合,写文章就是直接上 vim。vim 有一定的学习曲线,但是习惯了就好。 习惯以后,再使用这些插件就会更好用。 配置存放仓库: https://github.com/forfreeday/vim coc java 问题 JDK 版本要高于1.8否则,JDT会启动失败。
" always show signcolumns set signcolumn=yes " Use tab for trigger completion with characters ahead and navigate. " Use command ':verbose imap <tab>' to make sure tab is not mapped by other plugin. " inoremap <silent><expr> <TAB> pumvisible() ? "<C-n>" :<SID>check_back_space() ...
" Always show the signcolumn, otherwise it would shift the text each time " diagnostics appear/become resolved. set signcolumn=yes " Use tab for trigger completion with characters ahead and navigate. " NOTE: Use command ':verbose imap <tab>' to make sure tab is not mapped by " ...
" always show signcolumns set signcolumn=yes " Use tab for trigger completion with characters ahead and navigate. " Use command ':verbose imap <tab>' to make sure tab is not mapped by other plugin. inoremap <silent><expr> <TAB>
Add configuration: coc.preferences.invalidInsertCharacters. Add configuration: coc.preferences.snippetStatusText. Add coc#_insert_key() for insert keymap. Add workspace.registerExprKeymap(). Add detect for vim-node-rpc abnormal exist. Add requireRootPattern to languageserver configuration. Fix git check...