Add correct syntax rc trigger for customization examples

This commit is contained in:
MTDL9
2020-08-23 09:04:35 +02:00
parent 94773585a9
commit 3c298ca495

View File

@@ -46,14 +46,14 @@ You can add additional log level keywords using the standard VIM syntax function
```viml ```viml
" Add custom level identifiers " Add custom level identifiers
syn keyword logLevelError MY_CUSTOM_ERROR_KEYWORD au rc Syntax log syn keyword logLevelError MY_CUSTOM_ERROR_KEYWORD
``` ```
Likewise you can disable highlighting for elements you don't need: Likewise you can disable highlighting for elements you don't need:
```viml ```viml
" Remove highlighting for URLs " Remove highlighting for URLs
syn clear logUrl au rc Syntax log syn clear logUrl
``` ```