A small squirrel jumping around the syntax tree!
https://github.com/xiaoshihou514/squirrel.nvim/assets/108414369/c8b53e88-459f-4f80-b927-4a8eea7d66a4
Install like any other plugin, I would recommend using rocks.nvim, add the following to your rocks.toml
by using Rocks edit
"squirrel.nvim" = "1.0.0"
The following are already mapped on load, you can also remap it to whatever you want
-- jump to start of any node on the current line
vim.keymap.set({ "n", "x" }, "gaa", require("squirrel.hop").hop_linewise)
-- jump to start of any visible node
vim.keymap.set({ "n", "x" }, "ga", require("squirrel.hop").hop)
-- jump to end of any node on the current line
vim.keymap.set({ "n", "x" }, "gee", function()
require("squirrel.hop").hop_linewise({
head = false,
tail = true,
})
end)
-- jump to end of any visible node
vim.keymap.set({ "n", "x" }, "ge", function()
require("squirrel.hop").hop({
head = false,
tail = true,
})
end)
If you want, you can also jump to any start or end of nodes
require("squirrel.hop").hop_linewise({ head = true, tail = true })
Nonexistent, probably won't be one