diff options
| author | mitermayer <mitermayer.reis@gmail.com> | 2018-03-25 15:08:37 -0700 |
|---|---|---|
| committer | mitermayer <mitermayer.reis@gmail.com> | 2018-03-25 15:08:37 -0700 |
| commit | a0ab8e9b30022d00f5e6fa82a0204846c99b485b (patch) | |
| tree | ad0856d49eba64a4d7d908ccd6362424db29c712 /README.md | |
| parent | 31c10476272da60990d5e0639b8da15c76a5fa47 (diff) | |
| download | vim-prettier-a0ab8e9b30022d00f5e6fa82a0204846c99b485b.tar.xz | |
Updating the logic for controlling the quickfix flag
- Negation flags are usually more confusing to understand specially when
the default is having it enabled.
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -129,11 +129,10 @@ By default parsing errors will open the quickfix but can also be disabled let g:prettier#quickfix_enabled = 0 ``` -Have the cursor returned to its original window after the quickfix window is -shown. +By default we auto focus on the quickfix when there are errors but can also be disabled ```vim -let g:prettier#no_focus_quicklist = 0 +let g:prettier#quickfix_auto_focus = 0 ``` To enable vim-prettier to run in files without requiring the "@format" doc tag. |
