aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authormitchell <70453897+orbitalquark@users.noreply.github.com>2021-02-13 18:55:37 -0500
committermitchell <70453897+orbitalquark@users.noreply.github.com>2021-02-13 18:55:37 -0500
commita81fbc0b621aef0eae640be3dc453eda409c70c2 (patch)
treeae9908e547e00b6c9064a105e83100d8515651f2 /src/Makefile
parentcd17224d42a019dc54e33b0ec787242165fcf90e (diff)
downloadtextadept-a81fbc0b621aef0eae640be3dc453eda409c70c2.tar.gz
textadept-a81fbc0b621aef0eae640be3dc453eda409c70c2.zip
Take advantage of Scinterm being able to use a native terminal caret.
Also change brace highlight style to not change the background color, as some terminal cursors invert the current cell, so this would cause the highlighted brace at the current position to "unhighlight", causing confusion. This requires latest Scinterm.
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index 655a9745..889e8d9e 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -410,7 +410,9 @@ scintilla: scintilla.patch | $(scintilla_tgz)
for patch in $^; do echo Applying $$patch; patch -d $@ -N -p1 < $$patch; done
$(scinterm_zip): ; $(WGET) $(scinterm_url) -O $@
scinterm: scintilla/curses
-scintilla/curses: | $(scinterm_zip) ; unzip -d $@ -j $| "*/*.cxx" "*/*.h"
+scintilla/curses: | $(scinterm_zip)
+ unzip -d $@ $| && mv $@/*/* $@
+ make -C $@ patch
$(scintillua_zip): ; $(WGET) $(scintillua_url) -O $@
scintillua: ../lexers $(LexLPeg)
../lexers: | $(scintillua_zip) ; unzip -d $@ -j $| "*/lexers/*" -x "*/themes/*"