Skip to content

Commit

Permalink
style: quote
Browse files Browse the repository at this point in the history
  • Loading branch information
zztrieuzz committed Oct 27, 2024
1 parent 78b930b commit 08be31c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/spectre/utils.lua
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ M.truncate = function(str, len)
if vim.api.nvim_strwidth(str) <= len then
return str
end
return string.sub(str, 0, len) .. " ..."
return string.sub(str, 0, len) .. ' ...'
end
-- only escape slash
M.escape_slash = function(query)
Expand Down

0 comments on commit 08be31c

Please # to comment.