Tree-sitter hjkl
mode
Toggle into tshjkl
mode, then use hjkl
to change scope or select a sibling node. Toggle is mapped to <M-v>
(Alt-v
) and nodes are visually selected by default. Toggle, movement keys, extmark highlights and select mode can be configured - check init.lua to see configuration and defaults.
https://github.com/gsuuon/tshjkl.nvim/assets/6422188/58944f74-efab-4db8-bf51-d659f35c5759
Unwrapping a function
d
p
https://github.com/gsuuon/tshjkl.nvim/assets/6422188/008843a0-a6be-43c7-999f-d68ce1278307
lazy.nvim:
{
'gsuuon/tshjkl.nvim',
config = true
}
packer.nvim:
use {
'gsuuon/tshjkl.nvim',
config = require('tshjkl').setup()
}
You can override the default config with lazy opts
:
{
'gsuuon/tshjkl.nvim',
opts = {
keymaps = {
toggle = '<leader>ct',
},
marks = {
parent = {
virt_text = { {'h', 'ModeMsg'} },
virt_text_pos = 'overlay'
},
child = {
virt_text = { {'l', 'ModeMsg'} },
virt_text_pos = 'overlay'
},
prev = {
virt_text = { {'k', 'ModeMsg'} },
virt_text_pos = 'overlay'
},
next = {
virt_text = { {'j', 'ModeMsg'} },
virt_text_pos = 'overlay'
}
}
}
}
Or packer in require('tshjkl').setup({})
:
use {
'gsuuon/tshjkl.nvim',
config = require('tshjkl').setup({
keymaps = {
toggle = '<leader>N',
}
})
}
Check binds for more
v
— visual select the current node (if config.select_current_node
is false)b
— visual select backwards
h
— parentj
— next siblingk
— previous siblingl
— child
H
— top-most parentJ
— last siblingK
— first siblingL
— inner-most child
This plugin makes it easier to work with tree-sitter nodes - I've found it often surprising which node is under the cursor so I want to make navigating nodes as easy as basic navigation in Neovim. Visual select by default lets you do normal operations without too much extra thought - this just helps you easily select the node you're interested in.