diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-07-14 06:46:16 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-14 06:46:16 +0800 |
commit | dbb840da01c72d8a311e0c55d3248d78a64b63a4 (patch) | |
tree | 36a381283d42f6e23d552c3ed8e06b03b9fed51b /runtime/doc/quickfix.txt | |
parent | a3f4598226c4d01e4fbc41181a1ad21793862fe3 (diff) | |
download | rneovim-dbb840da01c72d8a311e0c55d3248d78a64b63a4.tar.gz rneovim-dbb840da01c72d8a311e0c55d3248d78a64b63a4.tar.bz2 rneovim-dbb840da01c72d8a311e0c55d3248d78a64b63a4.zip |
fix(runtime): respect 'rtp' order for all runtime files (#24335)
Diffstat (limited to 'runtime/doc/quickfix.txt')
-rw-r--r-- | runtime/doc/quickfix.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/doc/quickfix.txt b/runtime/doc/quickfix.txt index 7a1649a74b..0bf04034ec 100644 --- a/runtime/doc/quickfix.txt +++ b/runtime/doc/quickfix.txt @@ -1246,7 +1246,7 @@ not "b:current_compiler". What the command actually does is the following: - Delete the "current_compiler" and "b:current_compiler" variables. - Define the "CompilerSet" user command. With "!" it does ":set", without "!" it does ":setlocal". -- Execute ":runtime! compiler/{name}.(vim|lua)". The plugins are expected to +- Execute ":runtime! compiler/{name}.{vim,lua}". The plugins are expected to set options with "CompilerSet" and set the "current_compiler" variable to the name of the compiler. - Delete the "CompilerSet" user command. |