Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TwIStOy committed Nov 25, 2023
1 parent cf55fd6 commit 47452bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lua/ht/plugins/coding/nvim-cmp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ M.config = function()
},
window = {
completion = {
border = "solid",
border = "none",
focusable = false,
col_offset = 0,
},
Expand Down Expand Up @@ -235,7 +235,7 @@ M.config = function()
end,
}(entry, vim_item)
local strings = vim.split(kind.kind, "%s", { trimempty = true })
kind.kind = " " .. strings[1] .. " "
kind.kind = strings[1] .. " "
if #strings[2] > 0 then
kind.menu = " (" .. strings[2] .. ")"
else
Expand Down
2 changes: 1 addition & 1 deletion lua/ht/version.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
local M = {}

M.last_updated_time = '2023.11.24'
M.last_updated_time = '2023.11.25'

return M

0 comments on commit 47452bd

Please sign in to comment.