|
1 |
| -*syntax.txt* For Vim version 9.1. Last change: 2025 Aug 07 |
| 1 | +*syntax.txt* For Vim version 9.1. Last change: 2025 Aug 10 |
2 | 2 |
|
3 | 3 |
|
4 | 4 | VIM REFERENCE MANUAL by Bram Moolenaar
|
@@ -1637,7 +1637,7 @@ Elixir.
|
1637 | 1637 | FLEXWIKI *flexwiki.vim* *ft-flexwiki-syntax*
|
1638 | 1638 |
|
1639 | 1639 | FlexWiki is an ASP.NET-based wiki package which used to be available at
|
1640 |
| -http://www.flexwiki.com |
| 1640 | +www.flexwiki.com |
1641 | 1641 | NOTE: This site currently doesn't work, on Wikipedia is mentioned that
|
1642 | 1642 | development stopped in 2009.
|
1643 | 1643 |
|
@@ -1962,7 +1962,7 @@ are read during initialization) >
|
1962 | 1962 | :let html_my_rendering=1
|
1963 | 1963 |
|
1964 | 1964 | If you'd like to see an example download mysyntax.vim at
|
1965 |
| -http://www.fleiner.com/vim/download.html |
| 1965 | +https://www.fleiner.com/vim/download.html |
1966 | 1966 |
|
1967 | 1967 | You can also disable this rendering by adding the following line to your
|
1968 | 1968 | vimrc file: >
|
@@ -2231,6 +2231,15 @@ Certain modifiers are incompatible with each other, e.g. `abstract` and
|
2231 | 2231 | and can be differently highlighted as a group than other modifiers with >
|
2232 | 2232 | :hi link javaConceptKind NonText
|
2233 | 2233 |
|
| 2234 | +All instances of variable-width lookbehind assertions (|/\@<!| and |/\@<=|), |
| 2235 | +resorted to in syntax item definitions, are confined to arbitrary byte counts. |
| 2236 | +Another arbitrary value can be selected for a related group of definitions. |
| 2237 | +For example: > |
| 2238 | + :let g:java_lookbehind_byte_counts = {'javaMarkdownCommentTitle': 240} |
| 2239 | +Where each key name of this dictionary is the name of a syntax item. The use |
| 2240 | +of these assertions in syntax items may vary among revisions, so no definitive |
| 2241 | +set of supported key names is committed to. |
| 2242 | + |
2234 | 2243 | If you notice highlighting errors while scrolling backwards, which are fixed
|
2235 | 2244 | when redrawing with CTRL-L, try setting the "g:java_minlines" variable to
|
2236 | 2245 | a larger number: >
|
|
0 commit comments