From 4310102082470b2af281de8c8bf29145e456c8e4 Mon Sep 17 00:00:00 2001 From: "Michael D. Lowis" Date: Sun, 9 Jul 2017 13:54:44 -0400 Subject: [PATCH] fixed syntax error in highlighter --- TODO.md | 3 +++ tide-hl.rb | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/TODO.md b/TODO.md index 6fd6a81..3c11d18 100644 --- a/TODO.md +++ b/TODO.md @@ -2,6 +2,9 @@ Up Next: +* Send tag to send commands or data to the subprocess +* Middle click executes send when in command mode and edit region + * moving from tags to the gutter does not transfer focus to edit region * implement transaction control in buf.c * highlight all matches of search term diff --git a/tide-hl.rb b/tide-hl.rb index 92e0086..3d7a53b 100755 --- a/tide-hl.rb +++ b/tide-hl.rb @@ -154,7 +154,7 @@ end #------------------------------------------------------------------------------- # bail if theres nothing to highlight -if $language.nil? then exit +exit 0 if $language.nil? # otherwise start doing the job while (not $stdin.eof?) do -- 2.49.0