summaryrefslogtreecommitdiffstats
path: root/syntax/godebugstacktrace.vim
diff options
context:
space:
mode:
Diffstat (limited to 'syntax/godebugstacktrace.vim')
-rw-r--r--syntax/godebugstacktrace.vim15
1 files changed, 15 insertions, 0 deletions
diff --git a/syntax/godebugstacktrace.vim b/syntax/godebugstacktrace.vim
new file mode 100644
index 00000000..b24f2a3c
--- /dev/null
+++ b/syntax/godebugstacktrace.vim
@@ -0,0 +1,15 @@
+if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'go') == -1
+
+if exists("b:current_syntax")
+ finish
+endif
+
+syn match godebugStacktrace '^\S\+'
+
+let b:current_syntax = "godebugoutput"
+
+hi def link godebugStacktrace SpecialKey
+
+" vim: sw=2 ts=2 et
+
+endif