9 lines
194 B
VimL
9 lines
194 B
VimL
" Disable spell checking and set up custom mappings.
|
|
setlocal nospell
|
|
|
|
if getwininfo(win_getid())[0].loclist == 0
|
|
finish
|
|
endif
|
|
nnoremap <buffer> q :lclose<CR>
|
|
nnoremap <buffer> dd :lremove<CR>
|