aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lua/plugins/textobject-lexer.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/plugins/textobject-lexer.lua b/lua/plugins/textobject-lexer.lua
index 4837935..681f226 100644
--- a/lua/plugins/textobject-lexer.lua
+++ b/lua/plugins/textobject-lexer.lua
@@ -5,7 +5,7 @@ local MAX_CONTEXT = 32768
vis:textobject_new("ii", function(win, pos)
if win.syntax == nil or not vis.lexers then
- return pos, pos
+ return nil
end
local before, after = pos - MAX_CONTEXT, pos + MAX_CONTEXT
@@ -30,5 +30,5 @@ vis:textobject_new("ii", function(win, pos)
cur = token_next
end
- return pos, pos
+ return nil
end, "Current lexer token")