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
2
2
3
3
4
4
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1418,7 +1418,7 @@ declares an only parameter of type string and puts to use a command equivalent
1418
1418
of | :make | , and assigning its | Funcref | to the selected key. For example:
1419
1419
>vim
1420
1420
function! GenericPostCompilerCommand(arguments) abort
1421
- execute 'make ' . a:arguments
1421
+ execute 'make ' .. a:arguments
1422
1422
endfunction
1423
1423
1424
1424
let g:spotbugs_properties = {
@@ -1449,7 +1449,7 @@ that will arrange for "PostCompilerActionExecutor" to be invoked; and then run
1449
1449
function! GenericPreCompilerCommand(arguments) abort
1450
1450
if !exists('g:spotbugs_compilation_done')
1451
1451
doautocmd java_spotbugs_post User
1452
- execute 'make ' . a:arguments
1452
+ execute 'make ' .. a:arguments
1453
1453
" only run doautocmd when :make was synchronous
1454
1454
" see note below
1455
1455
doautocmd java_spotbugs_post ShellCmdPost " XXX: (a)
@@ -1462,7 +1462,7 @@ that will arrange for "PostCompilerActionExecutor" to be invoked; and then run
1462
1462
function! GenericPreCompilerTestCommand(arguments) abort
1463
1463
if !exists('g:spotbugs_test_compilation_done')
1464
1464
doautocmd java_spotbugs_post User
1465
- execute 'make ' . a:arguments
1465
+ execute 'make ' .. a:arguments
1466
1466
" only run doautocmd when :make was synchronous
1467
1467
" see note below
1468
1468
doautocmd java_spotbugs_post ShellCmdPost " XXX: (b)
0 commit comments