aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2024-04-21 16:06:29 +0200
committerChristian Clason <c.clason@uni-graz.at>2024-04-22 00:18:34 +0200
commit7b8e582f1ce3ba604eb03418ee8366f74496ad3e (patch)
treee056ba5bc64c169c4ee9462c5252df1f7caca26a /runtime/doc
parentf694d020c576fb037eb92bae3bbf03a69d8686b6 (diff)
downloadrneovim-7b8e582f1ce3ba604eb03418ee8366f74496ad3e.tar.gz
rneovim-7b8e582f1ce3ba604eb03418ee8366f74496ad3e.tar.bz2
rneovim-7b8e582f1ce3ba604eb03418ee8366f74496ad3e.zip
vim-patch:d3ff129ce8c6
runtime(astro): Add filetype, syntax and indent plugin related: vim/vim#14558 closes: vim/vim#14561 ported from: https://github.com/wuelnerdotexe/vim-astro https://github.com/vim/vim/commit/d3ff129ce8c68770c47d72ab3f30a21c19530eee Co-authored-by: Philip H <47042125+pheiduck@users.noreply.github.com>
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/syntax.txt16
1 files changed, 15 insertions, 1 deletions
diff --git a/runtime/doc/syntax.txt b/runtime/doc/syntax.txt
index 2589133cf4..15251192bb 100644
--- a/runtime/doc/syntax.txt
+++ b/runtime/doc/syntax.txt
@@ -461,6 +461,21 @@ nasm_loose_syntax unofficial parser allowed syntax not as Error
nasm_ctx_outside_macro contexts outside macro not as Error
nasm_no_warn potentially risky syntax not as ToDo
+ASTRO *astro.vim* *ft-astro-syntax*
+
+Configuration
+
+The following variables control certain syntax highlighting features.
+You can add them to your .vimrc: >
+ let g:astro_typescript = "enable"
+<
+Enables TypeScript and TSX for ".astro" files. Default Value: "disable" >
+ let g:astro_stylus = "enable"
+<
+Enables Stylus for ".astro" files. Default Value: "disable"
+
+NOTE: You need to install an external plugin to support stylus in astro files.
+
ASPPERL and ASPVBS *ft-aspperl-syntax* *ft-aspvbs-syntax*
@@ -5307,5 +5322,4 @@ literal text specify the size of that text (in bytes):
many places.
"<\@1<=span" Matches the same, but only tries one byte before "span".
-
vim:tw=78:sw=4:ts=8:noet:ft=help:norl: