We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c051aae commit 616705cCopy full SHA for 616705c
lua/luasnip/extras/expand_conditions.lua
@@ -30,11 +30,11 @@ local condition_mt = {
30
end
31
end,
32
-- xnor '=='
33
- __eq = function(o1, o2)
34
- return function(...)
35
- return o1(...) == o2(...)
36
- end
37
- end,
+ -- __eq = function(o1, o2)
+ -- return function(...)
+ -- return o1(...) == o2(...)
+ -- end
+ -- end,
38
-- use table like a function by overloading __call
39
__call = function(tab, line_to_cursor, matched_trigger, captures)
40
return tab.func(line_to_cursor, matched_trigger, captures)
0 commit comments