aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Arcangeli <stevearc@stevearc.com>2023-09-08 09:13:06 -0700
committerSteven Arcangeli <stevearc@stevearc.com>2023-09-08 09:13:06 -0700
commit0db858075b4d8214a34a6836d994e2100fed51bf (patch)
treed0939ecb9e74c91f51836793d7d57a805b8263fa
parent2568d746abbadf66a03c62b568ee73d874cd8617 (diff)
doc: document the "*" filetype option
-rw-r--r--README.md4
-rw-r--r--doc/conform.txt4
-rw-r--r--scripts/options_doc.lua4
3 files changed, 12 insertions, 0 deletions
diff --git a/README.md b/README.md
index 66b50dc..72514ef 100644
--- a/README.md
+++ b/README.md
@@ -214,6 +214,10 @@ require("conform").setup({
python = { "isort", "black" },
-- Use a sub-list to run only the first available formatter
javascript = { { "prettierd", "prettier" } },
+ -- Use the "*" filetype to run formatters on all files.
+ -- Note that if you use this, you may want to set lsp_fallback = "always"
+ -- (see :help conform.format)
+ ["*"] = { "trim_whitespace" },
},
-- If this is set, Conform will run the formatter on save.
-- It will pass the table to conform.format().
diff --git a/doc/conform.txt b/doc/conform.txt
index 66754a6..fada19a 100644
--- a/doc/conform.txt
+++ b/doc/conform.txt
@@ -20,6 +20,10 @@ OPTIONS *conform-option
python = { "isort", "black" },
-- Use a sub-list to run only the first available formatter
javascript = { { "prettierd", "prettier" } },
+ -- Use the "*" filetype to run formatters on all files.
+ -- Note that if you use this, you may want to set lsp_fallback = "always"
+ -- (see :help conform.format)
+ ["*"] = { "trim_whitespace" },
},
-- If this is set, Conform will run the formatter on save.
-- It will pass the table to conform.format().
diff --git a/scripts/options_doc.lua b/scripts/options_doc.lua
index 47eccd9..1a6921c 100644
--- a/scripts/options_doc.lua
+++ b/scripts/options_doc.lua
@@ -6,6 +6,10 @@ require("conform").setup({
python = { "isort", "black" },
-- Use a sub-list to run only the first available formatter
javascript = { { "prettierd", "prettier" } },
+ -- Use the "*" filetype to run formatters on all files.
+ -- Note that if you use this, you may want to set lsp_fallback = "always"
+ -- (see :help conform.format)
+ ["*"] = { "trim_whitespace" },
},
-- If this is set, Conform will run the formatter on save.
-- It will pass the table to conform.format().