Skip to content

Commit

Permalink
feat: remove nvim-treesitter dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
ribru17 committed Feb 28, 2024
1 parent c6139ca commit 340fefa
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 26 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
matrix:
include:
- os: ubuntu-20.04
url: https://github.com/neovim/neovim/releases/download/v0.7.0/nvim-linux64.tar.gz
url: https://github.com/neovim/neovim/releases/download/v0.9.5/nvim-linux64.tar.gz
manager: sudo apt-get
packages: -y fd-find
steps:
Expand Down
25 changes: 12 additions & 13 deletions lua/nvim-autopairs/ts-conds.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
local _, ts_utils = pcall(require, 'nvim-treesitter.ts_utils')

local log = require('nvim-autopairs._log')
local parsers = require'nvim-treesitter.parsers'
local utils = require('nvim-autopairs.utils')
local ts_get_node_text = vim.treesitter.get_node_text or vim.treesitter.query.get_node_text

Expand All @@ -17,8 +14,8 @@ conds.is_endwise_node = function(nodes)
if nodes == nil then return true end
if #nodes == 0 then return true end

parsers.get_parser():parse()
local target = ts_utils.get_node_at_cursor()
vim.treesitter.get_parser():parse()
local target = vim.treesitter.get_node({ ignore_injections = false })
if target ~= nil and utils.is_in_table(nodes, target:type()) then
local text = ts_get_node_text(target) or {""}
local last = text[#text]:match(opts.rule.end_pair)
Expand Down Expand Up @@ -59,7 +56,9 @@ conds.is_in_range = function(callback, position)
)
return function(opts)
log.debug('is_in_range')
if not parsers.has_parser() then
-- `parser` will be a table (on success) or a string (error message)
local _, parser = pcall(vim.treesitter.get_parser)
if not type(parser) == 'string' then
return
end
local cursor = position()
Expand All @@ -71,7 +70,7 @@ conds.is_in_range = function(callback, position)
local col = cursor[2]

local bufnr = 0
local root_lang_tree = parsers.get_parser(bufnr)
local root_lang_tree = vim.treesitter.get_parser(bufnr)
local lang_tree = root_lang_tree:language_for_range({ line, col, line, col })

local result
Expand Down Expand Up @@ -110,8 +109,8 @@ conds.is_ts_node = function(nodes)
log.debug('is_ts_node')
if #nodes == 0 then return end

parsers.get_parser():parse()
local target = ts_utils.get_node_at_cursor()
vim.treesitter.get_parser():parse()
local target = vim.treesitter.get_node({ ignore_injections = false })
if target ~= nil and utils.is_in_table(nodes, target:type()) then
return true
end
Expand All @@ -126,8 +125,8 @@ conds.is_not_ts_node = function(nodes)
log.debug('is_not_ts_node')
if #nodes == 0 then return end

parsers.get_parser():parse()
local target = ts_utils.get_node_at_cursor()
vim.treesitter.get_parser():parse()
local target = vim.treesitter.get_node({ ignore_injections = false })
if target ~= nil and utils.is_in_table(nodes, target:type()) then
return false
end
Expand All @@ -139,8 +138,8 @@ conds.is_not_ts_node_comment = function()
log.debug('not_in_ts_node_comment')
if not opts.ts_node then return end

parsers.get_parser():parse()
local target = ts_utils.get_node_at_cursor()
vim.treesitter.get_parser():parse()
local target = vim.treesitter.get_node({ ignore_injections = false })
if target ~= nil and utils.is_in_table(opts.ts_node, target:type()) then
return false
end
Expand Down
3 changes: 0 additions & 3 deletions tests/afterquote_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,6 @@ local data = {

local run_data = _G.Test_filter(data)

local _, ts_utils = pcall(require, 'nvim-treesitter.ts_utils')
_G.TU = ts_utils

describe('[afterquote tag]', function()
_G.Test_withfile(run_data, {})
end)
3 changes: 0 additions & 3 deletions tests/endwise_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,6 @@ local data = {

local run_data = _G.Test_filter(data)

local _, ts_utils = pcall(require, 'nvim-treesitter.ts_utils')
_G.TU = ts_utils

describe('[endwise tag]', function()
_G.Test_withfile(run_data, {
-- need to understand this ??? new line make change cursor zzz
Expand Down
3 changes: 0 additions & 3 deletions tests/fastwrap_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,6 @@

-- local run_data = _G.Test_filter(data)

-- local _, ts_utils = pcall(require, 'nvim-treesitter.ts_utils')
-- _G.TU = ts_utils

-- describe('[endwise tag]', function()
-- _G.Test_withfile(run_data, {})
-- end)
3 changes: 0 additions & 3 deletions tests/treesitter_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,6 @@ local data = {

local run_data = _G.Test_filter(data)

local _, ts_utils = pcall(require, 'nvim-treesitter.ts_utils')
_G.TU = ts_utils

describe('[treesitter check]', function()
_G.Test_withfile(run_data, {
before_each = function(value)
Expand Down

0 comments on commit 340fefa

Please sign in to comment.