move away from vim.opt_global to vim.go
All checks were successful
NeoVim tests / plenary-tests (push) Successful in 9s

This commit is contained in:
2025-03-19 22:29:33 -06:00
parent 79499e898c
commit 7fb60add94
3 changed files with 4 additions and 4 deletions

View File

@@ -76,7 +76,7 @@ function M.define_text_object(key_seq, fn, opts)
local p = range_or_pos --[[@as Pos]]
State.run(0, function(s)
s:track_global_option 'eventignore'
vim.opt_global.eventignore = 'all'
vim.go.eventignore = 'all'
-- insert a single space, so we can select it:
vim.api.nvim_buf_set_text(0, p.lnum, p.col, p.lnum, p.col, { ' ' })