|
3 | 3 | helpname: 'quickfix' |
4 | 4 | --- |
5 | 5 | <div id='vimCodeElement'> |
6 | | -<a class="Constant" href="quickfix.html" name="quickfix.txt">quickfix.txt</a> For <span class="Identifier">Vim バージョン 9.1.</span> Last change: 2025 Aug 27<br> |
| 6 | +<a class="Constant" href="quickfix.html" name="quickfix.txt">quickfix.txt</a> For <span class="Identifier">Vim バージョン 9.1.</span> Last change: 2025 Sep 24<br> |
7 | 7 | <br> |
8 | 8 | <br> |
9 | 9 | <span class="Identifier">VIMリファレンスマニュアル by Bram Moolenaar</span><br> |
|
1373 | 1373 | たキーに割り当てる。例:<br> |
1374 | 1374 | >vim<br> |
1375 | 1375 | function! GenericPostCompilerCommand(arguments) abort<br> |
1376 | | - execute 'make ' . a:arguments<br> |
| 1376 | + execute 'make ' .. a:arguments<br> |
1377 | 1377 | endfunction<br> |
1378 | 1378 | <br> |
1379 | 1379 | let g:spotbugs_properties = {<br> |
|
1404 | 1404 | function! GenericPreCompilerCommand(arguments) abort<br> |
1405 | 1405 | if !exists('g:spotbugs_compilation_done')<br> |
1406 | 1406 | doautocmd java_spotbugs_post User<br> |
1407 | | - execute 'make ' . a:arguments<br> |
| 1407 | + execute 'make ' .. a:arguments<br> |
1408 | 1408 | " :make が同期している場合にのみ doautocmd を実行する。<br> |
1409 | 1409 | " 下記の注記を参照<br> |
1410 | 1410 | doautocmd java_spotbugs_post ShellCmdPost " XXX: (a)<br> |
|
1417 | 1417 | function! GenericPreCompilerTestCommand(arguments) abort<br> |
1418 | 1418 | if !exists('g:spotbugs_test_compilation_done')<br> |
1419 | 1419 | doautocmd java_spotbugs_post User<br> |
1420 | | - execute 'make ' . a:arguments<br> |
| 1420 | + execute 'make ' .. a:arguments<br> |
1421 | 1421 | " :make が同期している場合にのみ doautocmd を実行する。<br> |
1422 | 1422 | " 下記の注記を参照<br> |
1423 | 1423 | doautocmd java_spotbugs_post ShellCmdPost " XXX: (b)<br> |
|
0 commit comments