1- *quickfix.txt* For Vim version 9.1. Last change: 2025 Aug 27
1+ *quickfix.txt* For Vim version 9.1. Last change: 2025 Sep 24
22
33
44 VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1418,7 +1418,7 @@ declares an only parameter of type string and puts to use a command equivalent
14181418of | :make | , and assigning its | Funcref | to the selected key. For example:
14191419>vim
14201420 function! GenericPostCompilerCommand(arguments) abort
1421- execute 'make ' . a:arguments
1421+ execute 'make ' .. a:arguments
14221422 endfunction
14231423
14241424 let g:spotbugs_properties = {
@@ -1449,7 +1449,7 @@ that will arrange for "PostCompilerActionExecutor" to be invoked; and then run
14491449 function! GenericPreCompilerCommand(arguments) abort
14501450 if !exists('g:spotbugs_compilation_done')
14511451 doautocmd java_spotbugs_post User
1452- execute 'make ' . a:arguments
1452+ execute 'make ' .. a:arguments
14531453 " only run doautocmd when :make was synchronous
14541454 " see note below
14551455 doautocmd java_spotbugs_post ShellCmdPost " XXX: (a)
@@ -1462,7 +1462,7 @@ that will arrange for "PostCompilerActionExecutor" to be invoked; and then run
14621462 function! GenericPreCompilerTestCommand(arguments) abort
14631463 if !exists('g:spotbugs_test_compilation_done')
14641464 doautocmd java_spotbugs_post User
1465- execute 'make ' . a:arguments
1465+ execute 'make ' .. a:arguments
14661466 " only run doautocmd when :make was synchronous
14671467 " see note below
14681468 doautocmd java_spotbugs_post ShellCmdPost " XXX: (b)
0 commit comments