nvim: formatting, technically not necessary correction
This commit is contained in:
parent
c3f414a82b
commit
c5203da97e
@ -91,10 +91,10 @@ if cmp and luasnip then
|
||||
require('cmp_dictionary').setup({
|
||||
dic = {
|
||||
['gitcommit'] =
|
||||
vim.fn.stdpath('config') .. '/resources/git.dict',
|
||||
vim.fn.stdpath('config') .. '/resources/git.dict',
|
||||
-- doesn't work, filetype is probably set too late
|
||||
['NeogitCommitMessage'] =
|
||||
vim.fn.stdpath('config') .. '/resources/git.dict',
|
||||
vim.fn.stdpath('config') .. '/resources/git.dict',
|
||||
}
|
||||
})
|
||||
|
||||
|
@ -161,7 +161,7 @@ function M.lsp_sig_status()
|
||||
|
||||
local label = require('lsp_signature').status_line().label
|
||||
if label:len() > width then
|
||||
label = label:sub(1, width) .. '…'
|
||||
label = label:sub(1, math.floor(width)) .. '…'
|
||||
end
|
||||
|
||||
return label
|
||||
|
Loading…
x
Reference in New Issue
Block a user