This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$help": "https://aka.ms/terminal-documentation", | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"actions": | |
[ | |
{ | |
"command": | |
{ | |
"action": "copy", | |
"singleLine": false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set bind-tty-special-chars off | |
set editing-mode vi | |
set show-mode-in-prompt on | |
set vi-cmd-mode-string "\1\e[2 q\2" | |
set vi-ins-mode-string "\1\e[6 q\2" | |
set keymap emacs | |
"\ee": vi-editing-mode |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/Makefile b/Makefile | |
index 470ac86..a836907 100644 | |
--- a/Makefile | |
+++ b/Makefile | |
@@ -43,7 +43,9 @@ dist: clean | |
install: st | |
mkdir -p $(DESTDIR)$(PREFIX)/bin | |
cp -f st $(DESTDIR)$(PREFIX)/bin | |
+ cp -f st-copyout $(DESTDIR)$(PREFIX)/bin | |
chmod 755 $(DESTDIR)$(PREFIX)/bin/st |