aboutsummaryrefslogtreecommitdiff
path: root/editors/vim
diff options
context:
space:
mode:
authorMarshall Lochbaum <mwlochbaum@gmail.com>2022-02-16 15:47:13 -0500
committerMarshall Lochbaum <mwlochbaum@gmail.com>2022-02-16 15:47:13 -0500
commit550ec8b662f0dc3c3d0571d8db01ebdabf76bb76 (patch)
tree99df1347145a2d4842715f2d1559b85abf7a34ba /editors/vim
parentb34f894ab1c9ef60b6d994de3687862832e276f2 (diff)
Don't highlight tabs as errors
Diffstat (limited to 'editors/vim')
-rw-r--r--editors/vim/syntax/bqn.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/vim/syntax/bqn.vim b/editors/vim/syntax/bqn.vim
index c794bb33..e8e41552 100644
--- a/editors/vim/syntax/bqn.vim
+++ b/editors/vim/syntax/bqn.vim
@@ -2,7 +2,7 @@ if exists('b:current_syntax')
finish
endif
-syn match bqnerr "[^ \r\n]"
+syn match bqnerr "[^ \t\r\n]"
syn match bqnblk "[{}]"
syn match bqnlst "[⟨⟩\[\]‿]"
syn match bqnpar "[()]"