7 lines
181 B
VimL
7 lines
181 B
VimL
if !has('nvim-0.5')
|
|
echohl WarningMsg
|
|
echom "modeline requires Neovim >= 0.5"
|
|
echohl None
|
|
finish
|
|
endif
|
|
command! -bar InsertModeline lua require("modeline").insertModeline()
|