Fix nvim :Format command
This commit is contained in:
parent
ea92572a62
commit
33e5350bbb
1 changed files with 3 additions and 1 deletions
|
@ -34,5 +34,7 @@ return function(_, bufnr)
|
||||||
end
|
end
|
||||||
--vim.keymap.set('n', '<leader>f', vim.lsp.buf.formatting, bufopts)
|
--vim.keymap.set('n', '<leader>f', vim.lsp.buf.formatting, bufopts)
|
||||||
|
|
||||||
vim.api.nvim_buf_create_user_command(bufnr, "Format", vim.lsp.buf.format, {})
|
vim.api.nvim_buf_create_user_command(bufnr, "Format", function()
|
||||||
|
vim.lsp.buf.format()
|
||||||
|
end, {})
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue