Skip to content

Commit 8c5eefc

Browse files
committed
Merge branch 'main' of github.com:jmbuhr/quarto-nvim-kickstarter
2 parents 486de9c + 896c7b9 commit 8c5eefc

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

lua/config/keymap.lua

+4-3
Original file line numberDiff line numberDiff line change
@@ -215,9 +215,10 @@ wk.register({
215215
['<m-i>'] = { insert_r_chunk, 'r code chunk' },
216216
['<cm-i>'] = { insert_py_chunk, 'python code chunk' },
217217
['<m-I>'] = { insert_py_chunk, 'python code chunk' },
218-
[']q'] = { ':silent cnext<cr>', 'quickfix next' },
219-
['[q'] = { ':silent cprev<cr>', 'quickfix prev' },
220-
['z?'] = { ':setlocal spell!<cr>', 'toggle spellcheck' },
218+
[']q'] = { ':silent cnext<cr>', '[q]uickfix next' },
219+
['[q'] = { ':silent cprev<cr>', '[q]uickfix prev' },
220+
['z?'] = { ':setlocal spell!<cr>', 'toggle [z]pellcheck' },
221+
['zl'] = { ':Telescope spell_suggest<cr>', '[l]ist spelling suggestions' },
221222
}, { mode = 'n', silent = true })
222223

223224
-- visual mode

0 commit comments

Comments
 (0)