nvim: Remove thesaurus mappings, Update spell map
Updated enabling spellchecker from <leader>Z to <leader>ZZ. <leader>ZE and <leader>ZG for language specific checking stays the same as before. Removed some dangling mappings referring to thesaurus_query plugin which has long been removed.
This commit is contained in:
parent
eb1dabc44f
commit
11c1383f01
1 changed files with 1 additions and 6 deletions
|
@ -188,16 +188,11 @@ map.i.nore.silent['@@'] = '<c-g>u<c-o>:CiteRef<cr>'
|
||||||
-- Spell check set to <leader>O, 'o' for 'orthography':
|
-- Spell check set to <leader>O, 'o' for 'orthography':
|
||||||
-- Move to the prev/next spelling error with [S ]S
|
-- Move to the prev/next spelling error with [S ]S
|
||||||
-- Move to the prev/next spelling error or suggestion with [s ]s
|
-- Move to the prev/next spelling error or suggestion with [s ]s
|
||||||
map.n.nore['<leader>Z'] = ':setlocal spell! spelllang=en_us,de_de<cr>'
|
map.n.nore['<leader>ZZ'] = ':setlocal spell! spelllang=en_us,de_de<cr>'
|
||||||
map.n.nore['<leader>ZE'] = ':setlocal spell! spelllang=en_us<cr>'
|
map.n.nore['<leader>ZE'] = ':setlocal spell! spelllang=en_us<cr>'
|
||||||
map.n.nore['<leader>ZG'] = ':setlocal spell! spelllang=en_us<cr>'
|
map.n.nore['<leader>ZG'] = ':setlocal spell! spelllang=en_us<cr>'
|
||||||
map.n.nore['<leader>zz'] = '1z='
|
map.n.nore['<leader>zz'] = '1z='
|
||||||
|
|
||||||
-- PLUGIN: tq thesaurus_query.vim
|
|
||||||
-- nnoremap <leader>zt :ThesaurusQueryReplaceCurrentWord<cr>
|
|
||||||
map.n.nore['<leader>zt'] = ':ThesaurusQueryReplaceCurrentWord<cr>'
|
|
||||||
map.v.nore['<leader>zt'] = '"ky:ThesaurusQueryReplace <cr>k<cr>'
|
|
||||||
|
|
||||||
-- pp to comPile a document (or file, works for some languages like go/python/c)
|
-- pp to comPile a document (or file, works for some languages like go/python/c)
|
||||||
-- o to open the resulting document (mostly for pdfs)
|
-- o to open the resulting document (mostly for pdfs)
|
||||||
-- po to comPile *and* open a doc
|
-- po to comPile *and* open a doc
|
||||||
|
|
Loading…
Reference in a new issue