mirror of
https://github.com/neovim/neovim.git
synced 2025-09-06 03:18:16 +00:00
lint: just bit twiddlin'
This commit is contained in:
@@ -135,8 +135,8 @@ function M.list_predicates()
|
||||
return vim.tbl_keys(predicate_handlers)
|
||||
end
|
||||
|
||||
local function xor(a, b)
|
||||
return (a or b) and not (a and b)
|
||||
local function xor(x, y)
|
||||
return (x or y) and not (x and y)
|
||||
end
|
||||
|
||||
function Query:match_preds(match, pattern, bufnr)
|
||||
|
Reference in New Issue
Block a user