aboutsummaryrefslogtreecommitdiff
path: root/runtime/compiler/context.vim
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2025-03-12 16:49:36 +0800
committerGitHub <noreply@github.com>2025-03-12 16:49:36 +0800
commitc63e794b103ceaa0b9cf4cd6816422bb38abde7e (patch)
treeccd9fa62b1a00b32963c3c0893307e7098c5d58b /runtime/compiler/context.vim
parent44ccd9ca24dd804afbc8a00eb1a4789975a51362 (diff)
downloadrneovim-c63e794b103ceaa0b9cf4cd6816422bb38abde7e.tar.gz
rneovim-c63e794b103ceaa0b9cf4cd6816422bb38abde7e.tar.bz2
rneovim-c63e794b103ceaa0b9cf4cd6816422bb38abde7e.zip
vim-patch:4fa2dd2: runtime(compiler): add comment for Dispatch (#32856)
closes: vim/vim#16854 https://github.com/vim/vim/commit/4fa2dd2405a8d11bf1d1cb3553adb6fba53dc19f Co-authored-by: Konfekt <Konfekt@users.noreply.github.com>
Diffstat (limited to 'runtime/compiler/context.vim')
-rw-r--r--runtime/compiler/context.vim1
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/compiler/context.vim b/runtime/compiler/context.vim
index 3d626ffa60..77f0eef806 100644
--- a/runtime/compiler/context.vim
+++ b/runtime/compiler/context.vim
@@ -21,6 +21,7 @@ if get(b:, 'context_ignore_makefile', get(g:, 'context_ignore_makefile', 0)) ||
\ . (get(b:, 'context_synctex', get(g:, 'context_synctex', 0)) ? '1' : '0')
\ . ' ' . get(b:, 'context_extra_options', get(g:, 'context_extra_options', ''))
\ . ' ' . shellescape(expand('%:p:t'))
+ " CompilerSet makeprg=context
execute 'CompilerSet makeprg=' .. escape(s:makeprg, ' ')
else
let current_compiler = 'make'