aboutsummaryrefslogtreecommitdiffstats
path: root/lua/conform
diff options
context:
space:
mode:
authorSteven Arcangeli <stevearc@stevearc.com>2023-09-18 21:11:08 -0700
committerSteven Arcangeli <stevearc@stevearc.com>2023-09-18 21:11:50 -0700
commitda5b9402bc3d114c93bc49bcbb4bf3e5c6c14527 (patch)
tree35d399b8b3459efbef74837684030bfb9c579bea /lua/conform
parent43d2b5c6a254f60cbd2142345d2f903e04f9db07 (diff)
doc: remove irrelevant note about '*' filetype
Diffstat (limited to 'lua/conform')
-rw-r--r--lua/conform/init.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/conform/init.lua b/lua/conform/init.lua
index 7c81e1e..585b7c8 100644
--- a/lua/conform/init.lua
+++ b/lua/conform/init.lua
@@ -283,7 +283,7 @@ end
--- bufnr nil|integer Format this buffer (default 0)
--- async nil|boolean If true the method won't block. Defaults to false. If the buffer is modified before the formatter completes, the formatting will be discarded.
--- formatters nil|string[] List of formatters to run. Defaults to all formatters for the buffer filetype.
---- lsp_fallback nil|boolean|"always" Attempt LSP formatting if no formatters are available. Defaults to false. If "always", will attempt LSP formatting even if formatters are available (useful if you set formatters for the "*" filetype)
+--- lsp_fallback nil|boolean|"always" Attempt LSP formatting if no formatters are available. Defaults to false. If "always", will attempt LSP formatting even if formatters are available.
--- quiet nil|boolean Don't show any notifications for warnings or failures. Defaults to false.
--- range nil|table Range to format. Table must contain `start` and `end` keys with {row, col} tuples using (1,0) indexing. Defaults to current selection in visual mode
--- id nil|integer Passed to |vim.lsp.buf.format| when lsp_fallback = true