|
1 |
| -*syntax.txt* For Vim version 9.1. Last change: 2025 Mar 27 |
| 1 | +*syntax.txt* For Vim version 9.1. Last change: 2025 Apr 15 |
2 | 2 |
|
3 | 3 |
|
4 | 4 | VIM REFERENCE MANUAL by Bram Moolenaar
|
@@ -2393,11 +2393,16 @@ Comments are also highlighted by default. You can turn this off by using: >
|
2393 | 2393 |
|
2394 | 2394 | :let make_no_comments = 1
|
2395 | 2395 |
|
2396 |
| -Microsoft Makefile handles variable expansion and comments differently |
2397 |
| -(backslashes are not used for escape). If you see any wrong highlights |
2398 |
| -because of this, you can try this: > |
| 2396 | +There are various Make implementations, which add extensions other than the |
| 2397 | +POSIX specification and thus are mutually incompatible. If the filename is |
| 2398 | +BSDmakefile or GNUmakefile, the corresponding implementation is automatically |
| 2399 | +determined; otherwise vim tries to detect it by the file contents. If you see |
| 2400 | +any wrong highlights because of this, you can enforce a flavor by setting one |
| 2401 | +of the following: > |
2399 | 2402 |
|
2400 |
| - :let make_microsoft = 1 |
| 2403 | + :let g:make_flavor = 'bsd' " or |
| 2404 | + :let g:make_flavor = 'gnu' " or |
| 2405 | + :let g:make_flavor = 'microsoft' |
2401 | 2406 |
|
2402 | 2407 |
|
2403 | 2408 | MAPLE *maple.vim* *ft-maple-syntax*
|
@@ -2451,6 +2456,12 @@ have the following in your .vimrc: >
|
2451 | 2456 |
|
2452 | 2457 | let filetype_m = "mma"
|
2453 | 2458 |
|
| 2459 | +MBSYNC *mbsync.vim* *ft-mbsync-syntax* |
| 2460 | + |
| 2461 | +The mbsync application uses a configuration file to setup mailboxes names, |
| 2462 | +user and password. All files ending with `.mbsyncrc` or with the name |
| 2463 | +`isyncrc` will be recognized as mbsync configuration files. |
| 2464 | + |
2454 | 2465 | MEDIAWIKI *ft-mediawiki-syntax*
|
2455 | 2466 |
|
2456 | 2467 | By default, syntax highlighting includes basic HTML tags like style and
|
|
0 commit comments