We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5df91ec commit 2ad3d78Copy full SHA for 2ad3d78
1 file changed
README.md
@@ -60,15 +60,15 @@ need to execute `:helptags ALL` so that Vim is aware of editorconfig.txt.
60
To ensure that this plugin works well with [Tim Pope's fugitive][], use the
61
following patterns array:
62
63
- let g:EditorConfig_exclude_patterns = ['fugitive://.\*']
+ let g:EditorConfig_exclude_patterns = ['fugitive://.*']
64
65
If you wanted to avoid loading EditorConfig for any remote files over ssh:
66
67
- let g:EditorConfig_exclude_patterns = ['scp://.\*']
+ let g:EditorConfig_exclude_patterns = ['scp://.*']
68
69
Of course these two items could be combined into the following:
70
71
- let g:EditorConfig_exclude_patterns = ['fugitive://.\*', 'scp://.\*']
+ let g:EditorConfig_exclude_patterns = ['fugitive://.*', 'scp://.*']
72
73
#### Disable rules
74
0 commit comments