@username
を付けます"
以降がコメントになる。ここはさすがに neovim でも変わらない気がする
70 | ""---------------------------------------------------------------------------//
71 | highlight PmenuSel guibg=#004D40 guifg=white gui=bold
72 | "Remove vertical separator
230 | function! lib#buffer_autosave(enable)
231 | augroup autosave
232 | autocmd!
233 | if a:enable
234 | autocmd TextChanged,InsertLeave <buffer>
235 | \ if empty(&buftype) && !empty(bufname(''))
236 | \| silent! update
237 | \| endif
238 | endif
239 | augroup END
240 | endfunction
241 |
242 | command! -bang AutoSave call lib#autosave(<bang>1)
243 |
244 | " custom text-object for numerical values
245 | function! lib#Numbers()
246 | call search('\d\([^0-9\.]\|$\)', 'cW')
247 | normal v
248 | call search('\(^\|[^0-9\.]\d\)', 'becW')
249 | endfunction
L14-17 neovim には &t_xxx がない。この前聞いたやつ!