diff options
author | shadmansaleh <shadmansaleh3@gmail.com> | 2021-06-02 13:48:13 +0600 |
---|---|---|
committer | shadmansaleh <shadmansaleh3@gmail.com> | 2021-06-11 01:01:02 +0600 |
commit | 68be8b99cfb1ab6105c48707986ce409ca38dd35 (patch) | |
tree | e0d3a12f6531b4766f431535949f627132ecb83d /runtime | |
parent | 1e6c02510afd79659519f2a69075b36784134322 (diff) | |
download | rneovim-68be8b99cfb1ab6105c48707986ce409ca38dd35.tar.gz rneovim-68be8b99cfb1ab6105c48707986ce409ca38dd35.tar.bz2 rneovim-68be8b99cfb1ab6105c48707986ce409ca38dd35.zip |
feat(runtime): Allow lua to be used in compiler
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/quickfix.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/quickfix.txt b/runtime/doc/quickfix.txt index a937cfee98..ebc7e2a1b4 100644 --- a/runtime/doc/quickfix.txt +++ b/runtime/doc/quickfix.txt @@ -1208,8 +1208,8 @@ 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". The plugins are expected to set - options with "CompilerSet" and set the "current_compiler" variable to the +- 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. - Set "b:current_compiler" to the value of "current_compiler". |