navigator.lua/lua/navigator/formatting.lua

26 lines
1015 B
Lua
Raw Normal View History

2021-06-17 14:49:13 +00:00
-- https://github.com/wention/dotfiles/blob/master/.config/nvim/lua/config/lsp.lua
-- https://github.com/lukas-reineke/dotfiles/blob/master/vim/lua/lsp/handlers.lua
local mk_handler = require"navigator.util".mk_handler
2021-06-17 14:49:13 +00:00
return {
format_hdl = mk_handler(function(err, result, ctx, cfg) -- FIXME: bufnr is nil
2021-06-17 14:49:13 +00:00
if err ~= nil or result == nil then
return
end
-- If the buffer hasn't been modified before the formatting has finished,
-- update the buffer
if not vim.api.nvim_buf_get_option(ctx.bufnr, 'modified') then
2021-06-17 14:49:13 +00:00
local view = vim.fn.winsaveview()
vim.lsp.util.apply_text_edits(result, ctx.bufnr)
2021-06-17 14:49:13 +00:00
vim.fn.winrestview(view)
-- FIXME: commented out as a workaround
-- if bufnr == vim.api.nvim_get_current_buf() then
vim.api.nvim_command('noautocmd :update')
-- Trigger post-formatting autocommand which can be used to refresh gitgutter
-- vim.api.nvim_command('silent doautocmd <nomodeline> User FormatterPost')
-- end
end
end)
2021-06-17 14:49:13 +00:00
}