From 4b4aeaffa5b0d6bc7823cd09c6a758c24131de0c Mon Sep 17 00:00:00 2001 From: tkiat Date: Fri, 4 Jun 2021 17:16:41 +0700 Subject: [PATCH] Fix a typo (#11009) Need to change 'M' to 'm' otherwise it won't work. You may refer to https://github.com/neoclide/coc-prettier/pull/47 --- docs/vim.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/vim.md b/docs/vim.md index 70eb9efdf783..ed9edb6d7223 100644 --- a/docs/vim.md +++ b/docs/vim.md @@ -116,7 +116,7 @@ Update your `coc-settings.json` for languages that you want format on save. ```json { - "coc.preferences.formatOnSaveFiletypes": ["css", "Markdown"] + "coc.preferences.formatOnSaveFiletypes": ["css", "markdown"] } ```