Created
July 9, 2022 09:46
-
-
Save ggandor/a8c800d2c887bc3713c7993e02ed3409 to your computer and use it in GitHub Desktop.
Jump to and operate on AST nodes via the Leap interface
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local api = vim.api | |
-- Note: The functions used here will be upstreamed eventually. | |
local ts_utils = require('nvim-treesitter.ts_utils') | |
local function get_nodes() | |
local wininfo = vim.fn.getwininfo(api.nvim_get_current_win())[1] | |
-- Get current TS node. | |
local cur_node = ts_utils.get_node_at_cursor(0) | |
if not cur_node then return end | |
-- Get parent nodes recursively. | |
local nodes = { cur_node } | |
local parent = cur_node:parent() | |
while parent do | |
table.insert(nodes, parent) | |
parent = parent:parent() | |
end | |
-- Create Leap targets from TS nodes. | |
local targets = {} | |
for _, node in ipairs(nodes) do | |
startline, startcol, _, _ = node:range() -- (0,0) | |
if startline + 1 >= wininfo.topline then | |
local target = { node = node, pos = { startline + 1, startcol + 1 } } | |
table.insert(targets, target) | |
end | |
end | |
if #targets >= 1 then return targets end | |
end | |
local function select_range(target) | |
local mode = api.nvim_get_mode().mode | |
if not mode:match('n?o') then | |
-- Force going back to Normal (implies mode = v | V | ). | |
vim.cmd('normal! ' .. mode) | |
end | |
local vmode = "charwise" | |
if mode:match('V') then | |
vmode = 'linewise' | |
elseif mode:match('') then | |
vmode = 'blockwise' | |
end | |
ts_utils.update_selection(0, target.node, vmode) | |
end | |
local function jump(target) | |
startline, startcol, _, _ = target.node:range() -- (0,0) | |
api.nvim_win_set_cursor(0, { startline + 1, startcol }) -- (1,0) | |
end | |
-- Map this function to your preferred key. | |
local function leap_ts_nodes() | |
local targets = get_nodes() | |
local action = api.nvim_get_mode().mode == 'n' and jump or select_range | |
require('leap').leap { targets = targets, action = action, backward = true } | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment