Skip to content

Commit

Permalink
Drop angle-brackets completely
Browse files Browse the repository at this point in the history
  • Loading branch information
mgnsk committed Jun 18, 2024
1 parent fada8b7 commit cbe3226
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/dumb-autopairs/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,13 @@ end
--- @param s string
--- @return boolean
local function has_open_brace_suffix(s)
return hassuffix(s, { "(", "[", "{", "<" })
return hassuffix(s, { "(", "[", "{" })
end

--- @param s string
--- @return boolean
local function has_close_brace_prefix(s)
return hasprefix(s, { ")", "]", "}", ">" })
return hasprefix(s, { ")", "]", "}" })
end

--- @param s string
Expand Down

0 comments on commit cbe3226

Please sign in to comment.