2022-04-19 12:56:22 +00:00
|
|
|
(let [mod {}
|
|
|
|
b vim.b
|
2022-04-27 20:17:59 +00:00
|
|
|
api vim.api
|
2023-07-19 12:48:38 +00:00
|
|
|
set-bufvar vim.api.nvim_buf_set_var]
|
2022-04-19 12:56:22 +00:00
|
|
|
(fn mod.setup []
|
2023-07-19 12:48:38 +00:00
|
|
|
(let [usercmd vim.api.nvim_create_user_command]
|
2022-04-27 20:17:59 +00:00
|
|
|
(usercmd :FormatDisableBuffer mod.disable-for-buffer
|
|
|
|
{:desc "Disable Formatting for the current buffer"})
|
|
|
|
(usercmd :FormatEnableBuffer mod.enable-for-buffer
|
2023-07-19 12:48:38 +00:00
|
|
|
{:desc "Enable Formatting for the current buffer"})))
|
2022-04-27 20:17:59 +00:00
|
|
|
|
2023-07-19 12:48:38 +00:00
|
|
|
(fn notify [msg]
|
|
|
|
(vim.notify msg vim.log.levels.INFO {:title :Formatter}))
|
2023-07-13 10:02:14 +00:00
|
|
|
|
2023-07-19 12:48:38 +00:00
|
|
|
(fn has-formatter-config? [ft]
|
|
|
|
(let [cfg (require :formatter.config)
|
|
|
|
fts (cfg.get :filetype)]
|
|
|
|
(not= (. fts ft) nil)))
|
2023-05-01 21:09:15 +00:00
|
|
|
|
2022-04-27 20:17:59 +00:00
|
|
|
(fn mod.enable-for-buffer []
|
|
|
|
(set-bufvar 0 :nifoc_formatter_disabled 0))
|
|
|
|
|
|
|
|
(fn mod.disable-for-buffer []
|
|
|
|
(set-bufvar 0 :nifoc_formatter_disabled 1))
|
2022-04-19 12:56:22 +00:00
|
|
|
|
2022-05-31 13:46:32 +00:00
|
|
|
(fn mod.active? []
|
2023-07-12 18:39:50 +00:00
|
|
|
(let [ft vim.bo.filetype]
|
|
|
|
(if (= b.nifoc_formatter_disabled 1) false
|
2023-07-19 12:48:38 +00:00
|
|
|
(has-formatter-config? ft))))
|
2022-05-31 13:46:32 +00:00
|
|
|
|
2022-04-19 12:56:22 +00:00
|
|
|
(fn mod.maybe-enable-lsp [client bufnr]
|
2022-05-22 21:05:38 +00:00
|
|
|
(when (client.supports_method :textDocument/rangeFormatting)
|
2023-07-19 12:48:38 +00:00
|
|
|
(api.nvim_buf_set_option bufnr :formatexpr "v:lua.vim.lsp.formatexpr()")))
|
2022-04-19 12:56:22 +00:00
|
|
|
|
|
|
|
mod)
|
|
|
|
|