-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into tabsidebar
- Loading branch information
Showing
33 changed files
with
534 additions
and
188 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,7 @@ | |
" Mike Leary <[email protected]> | ||
" Markus Mottl <[email protected]> | ||
" URL: https://github.com/ocaml/vim-ocaml | ||
" Last Change: 2023 Aug 28 - Add undo_indent (Vim Project) | ||
" 2017 Jun 13 | ||
" Last Change: 2017 Jun 13 | ||
" 2005 Jun 25 - Fixed multiple bugs due to 'else\nreturn ind' working | ||
" 2005 May 09 - Added an option to not indent OCaml-indents specially (MM) | ||
" 2013 June - commented textwidth (Marc Weber) | ||
|
@@ -36,6 +35,7 @@ if !exists("no_ocaml_comments") | |
setlocal comments=sr:(*\ ,mb:\ ,ex:*) | ||
setlocal comments^=sr:(**,mb:\ \ ,ex:*) | ||
setlocal fo=cqort | ||
let b:undo_indent .= " | setl com< fo<" | ||
endif | ||
endif | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
" Anton Kochkov <[email protected]> | ||
" URL: https://github.com/ocaml/vim-ocaml | ||
" Last Change: | ||
" 2023 Nov 24 - Add end-of-line strings (Samuel Hym) | ||
" 2019 Feb 27 - Add newer keywords to the syntax (Simon Cruanes) | ||
" 2018 May 8 - Check current_syntax (Kawahara Satoru) | ||
" 2018 Mar 29 - Extend jbuild syntax with more keywords (Petter A. Urkedal) | ||
|
@@ -38,6 +39,8 @@ syn keyword lispFunc ignore-stdout ignore-stderr ignore-outputs | |
syn keyword lispFunc with-stdout-to with-stderr-to with-outputs-to | ||
syn keyword lispFunc write-file system bash | ||
|
||
syn region lispString start=+"\\[>|]+ end=+$+ contains=@Spell | ||
|
||
syn cluster lispBaseListCluster add=duneVar | ||
syn match duneVar '\${[@<^]}' containedin=lispSymbol | ||
syn match duneVar '\${\k\+\(:\k\+\)\?}' containedin=lispSymbol | ||
|
Oops, something went wrong.