|
1 | | -*quickfix.txt* For Vim version 9.1. Last change: 2024 Oct 05 |
| 1 | +*quickfix.txt* For Vim version 9.1. Last change: 2024 Nov 10 |
2 | 2 |
|
3 | 3 |
|
4 | 4 | VIM REFERENCE MANUAL by Bram Moolenaar |
@@ -361,7 +361,7 @@ processing a quickfix or location list command, it will be aborted. |
361 | 361 | Example: > |
362 | 362 | :g/mypattern/caddexpr expand("%") .. ":" .. line(".") .. ":" .. getline(".") |
363 | 363 | < |
364 | | - *:lad* *:addd* *:laddexpr* |
| 364 | + *:lad* *:ladd* *:laddexpr* |
365 | 365 | :lad[dexpr] {expr} Same as ":caddexpr", except the location list for the |
366 | 366 | current window is used instead of the quickfix list. |
367 | 367 |
|
@@ -1405,6 +1405,33 @@ being checked. To disable this set g:perl_compiler_force_warnings to a zero |
1405 | 1405 | value. For example: > |
1406 | 1406 | let g:perl_compiler_force_warnings = 0 |
1407 | 1407 |
|
| 1408 | +MYPY TYPE CHECKER *compiler-mypy* |
| 1409 | + |
| 1410 | +Commonly used compiler options can be added to 'makeprg' by setting the |
| 1411 | +b/g:mypy_makeprg_params variable. For example: > |
| 1412 | +
|
| 1413 | + let b:mypy_makeprg_params = "--warn-unused-ignores" |
| 1414 | +
|
| 1415 | +The global default is "--strict --ignore-missing-imports". |
| 1416 | + |
| 1417 | +RUFF LINTER *compiler-ruff* |
| 1418 | + |
| 1419 | +Commonly used compiler options can be added to 'makeprg' by setting the |
| 1420 | +b/g:ruff_makeprg_params variable. For example: > |
| 1421 | +
|
| 1422 | + let b:ruff_makeprg_params = "--max-line-length"..&textwidth |
| 1423 | +
|
| 1424 | +The global default is "--preview". |
| 1425 | + |
| 1426 | +PYLINT LINTER *compiler-pylint* |
| 1427 | + |
| 1428 | +Commonly used compiler options can be added to 'makeprg' by setting the |
| 1429 | +b/g:pylint_makeprg_params variable. For example: > |
| 1430 | +
|
| 1431 | + let b:pylint_makeprg_params = "--max-line-length"..&textwidth |
| 1432 | +
|
| 1433 | +The global default is "--jobs=n" where n is the number of cores as reported |
| 1434 | +by getconf, if executable. Otherwise it defaults to "". |
1408 | 1435 |
|
1409 | 1436 | PYUNIT COMPILER *compiler-pyunit* |
1410 | 1437 |
|
|
0 commit comments