goto diagnostic
This commit is contained in:
parent
78b379b80a
commit
8dcc611134
|
@ -56,6 +56,14 @@ end
|
|||
map('n', '<A-k>', '<cmd>lnext<CR>', { desc = 'Next Loclist Item' })
|
||||
map('n', '<A-j>', '<cmd>lprev<CR>', { desc = 'Previous Loclist Item' })
|
||||
|
||||
-- go to next diagnostics entry
|
||||
map('n', '<C-j>', function ()
|
||||
vim.diagnostic.goto_next()
|
||||
end, { desc = 'go to next diagnostic'})
|
||||
map('n', '<C-k>', function ()
|
||||
vim.diagnostic.goto_prev()
|
||||
end, { desc = 'go to last diagnostic'})
|
||||
|
||||
-- Whitespace jump (see plugin/whitespace.vim)
|
||||
map('n', ']s', function()
|
||||
require('plex.lib.edit').whitespace_jump(1)
|
||||
|
|
|
@ -9,6 +9,7 @@ return {
|
|||
load = {
|
||||
["core.defaults"] = {}, -- Loads default behaviour
|
||||
["core.concealer"] = {}, -- Adds pretty icons to your documents
|
||||
["core.export"] = {},
|
||||
["core.dirman"] = { -- Manages Neorg workspaces
|
||||
config = {
|
||||
workspaces = {
|
||||
|
|
|
@ -30,3 +30,35 @@ stdin
|
|||
md
|
||||
regex101
|
||||
#nglish
|
||||
Manspider
|
||||
Manspiders
|
||||
subrace
|
||||
subraces
|
||||
swiftstride
|
||||
beasthide
|
||||
Eldeen
|
||||
Khorvaire
|
||||
drider
|
||||
spiderful
|
||||
spiderfew
|
||||
Spiderfolk
|
||||
Shrelluka
|
||||
find/!
|
||||
find
|
||||
Magnam
|
||||
arachna
|
||||
matrem
|
||||
namegen
|
||||
Zessas
|
||||
Webbington
|
||||
Razu
|
||||
Rhellu
|
||||
cantrip
|
||||
d12
|
||||
d4
|
||||
th
|
||||
unnoteworthy
|
||||
Qroczhreer
|
||||
Blokhof
|
||||
Hauck
|
||||
spiderous
|
||||
|
|
Binary file not shown.
Loading…
Reference in New Issue