mirror of
https://github.com/windwp/nvim-ts-autotag.git
synced 2025-01-23 13:43:54 -06:00
Compare commits
4 Commits
26c365cc7d
...
1624866a13
Author | SHA1 | Date | |
---|---|---|---|
1624866a13 | |||
|
7f9f55b285 | ||
|
0782035107 | ||
|
220fe15d97 |
@ -63,7 +63,20 @@ end
|
||||
|
||||
M.get_node_text = function(node)
|
||||
local _, txt = pcall(get_node_text, node, vim.api.nvim_get_current_buf())
|
||||
return vim.split(txt, "\n") or {}
|
||||
|
||||
local texts = vim.split(txt, "\n")
|
||||
local filtered = {}
|
||||
|
||||
-- For some nodes (tsx) 'vim.treesitter.get_node_text' can return empty lines or lines with spaces
|
||||
-- We have to exclude them
|
||||
for i = 1, #texts do
|
||||
local text = texts[i]:gsub("^%s*(.-)%s*$", "%1")
|
||||
if text ~= "" then
|
||||
filtered[#filtered + 1] = text
|
||||
end
|
||||
end
|
||||
|
||||
return filtered or {}
|
||||
end
|
||||
|
||||
-- Stolen from nvim `0.10.0` for `0.9.5` users
|
||||
|
Loading…
x
Reference in New Issue
Block a user