diff options
author | Christian Clason <c.clason@uni-graz.at> | 2024-11-13 20:26:51 +0100 |
---|---|---|
committer | Christian Clason <ch.clason+github@icloud.com> | 2024-11-14 09:35:11 +0100 |
commit | c905f165072881128294e3a58f491e38bc4e70f8 (patch) | |
tree | 228e9397522cf340114a5bd1a29f8bea2efc4627 /runtime/syntax/racket.vim | |
parent | b820b0e47ec4ebb60af52afd8f90a47914381054 (diff) | |
download | rneovim-c905f165072881128294e3a58f491e38bc4e70f8.tar.gz rneovim-c905f165072881128294e3a58f491e38bc4e70f8.tar.bz2 rneovim-c905f165072881128294e3a58f491e38bc4e70f8.zip |
vim-patch:8e013b1: runtime(racket): update Racket runtime files
This brings the included Racket runtime files to commit c41bc5a (indent
for[*]/lists with accumulator clause correctly, 2024-11-12) of
https://github.com/benknoble/vim-racket.
Note that not all files from that repository are included.
closes: vim/vim#16046
https://github.com/vim/vim/commit/8e013b14211ee236f4866e7281ad4366e0ab18cd
Co-authored-by: D. Ben Knoble <ben.knoble+github@gmail.com>
Diffstat (limited to 'runtime/syntax/racket.vim')
-rw-r--r-- | runtime/syntax/racket.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/syntax/racket.vim b/runtime/syntax/racket.vim index fcd64a7c9b..7dcca6082c 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: 2023 Sep 22 +" Last Change: 2024 Apr 14 " Initializing: if exists("b:current_syntax") @@ -30,7 +30,7 @@ endif " http://docs.racket-lang.org/reference/index.html " syntax keyword racketSyntax module module* module+ require provide quote -syntax keyword racketSyntax #%datum #%expression #%top #%variable-reference #%app +syntax keyword racketSyntax #%module-begin #%datum #%expression #%top #%variable-reference #%app syntax keyword racketSyntax lambda case-lambda let let* letrec syntax keyword racketSyntax let-values let*-values let-syntax letrec-syntax syntax keyword racketSyntax let-syntaxes letrec-syntaxes letrec-syntaxes+values |