diff options
author | Christian Clason <c.clason@uni-graz.at> | 2023-12-16 14:31:36 +0100 |
---|---|---|
committer | Christian Clason <c.clason@uni-graz.at> | 2023-12-16 15:57:22 +0100 |
commit | ba613d63c4ba363e1629be4a56144df17deb51e5 (patch) | |
tree | 46b7c4b08b35558f9fb8216041322a42b09eac2f /runtime/syntax | |
parent | 6b8084a6beb5633ddaf9d1a51b4a501e291958c8 (diff) | |
download | rneovim-ba613d63c4ba363e1629be4a56144df17deb51e5.tar.gz rneovim-ba613d63c4ba363e1629be4a56144df17deb51e5.tar.bz2 rneovim-ba613d63c4ba363e1629be4a56144df17deb51e5.zip |
vim-patch:5eb9cb53d619
runtime(racket): update Racket runtime files (vim/vim#13693)
This brings the included Racket runtime files to commit 43bfc87 (update
headers, 2023-12-15) of https://github.com/benknoble/vim-racket. Note
that not all files from that repository are included. (In particular,
the ftdetect script is omitted for now.)
https://github.com/vim/vim/commit/5eb9cb53d619f89251d22299e2cb4f21918d9d38
Co-authored-by: D. Ben Knoble <ben.knoble+github@gmail.com>
Diffstat (limited to 'runtime/syntax')
-rw-r--r-- | runtime/syntax/racket.vim | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/runtime/syntax/racket.vim b/runtime/syntax/racket.vim index b1ed2b454c..fcd64a7c9b 100644 --- a/runtime/syntax/racket.vim +++ b/runtime/syntax/racket.vim @@ -4,7 +4,7 @@ " Previous Maintainer: Will Langstroth <will@langstroth.com> " URL: https://github.com/benknoble/vim-racket " Description: Contains all of the keywords in #lang racket -" Last Change: 2022 Aug 12 +" Last Change: 2023 Sep 22 " Initializing: if exists("b:current_syntax") @@ -514,13 +514,13 @@ syntax region racketString start=/\%(\\\)\@<!"/ skip=/\\[\\"]/ end=/"/ contains= syntax region racketString start=/#"/ skip=/\\[\\"]/ end=/"/ contains=racketStringEscapeError,racketStringEscape if exists("racket_no_string_fold") - syn region racketString start=/#<<\z(.*\)$/ end=/^\z1$/ + syn region racketHereString start=/#<<\z(.*\)$/ end=/^\z1$/ else - syn region racketString start=/#<<\z(.*\)$/ end=/^\z1$/ fold + syn region racketHereString start=/#<<\z(.*\)$/ end=/^\z1$/ fold endif -syntax cluster racketTop add=racketError,racketConstant,racketStruc,racketString +syntax cluster racketTop add=racketError,racketConstant,racketStruc,racketString,racketHereString " Numbers @@ -623,6 +623,7 @@ highlight default link racketFunc Function highlight default link racketString String highlight default link racketStringEscape Special +highlight default link racketHereString String highlight default link racketUStringEscape Special highlight default link racketStringEscapeError Error highlight default link racketChar Character |