summaryrefslogtreecommitdiff
path: root/Biz/Ide/ns.sh
diff options
context:
space:
mode:
Diffstat (limited to 'Biz/Ide/ns.sh')
-rwxr-xr-xBiz/Ide/ns.sh16
1 files changed, 8 insertions, 8 deletions
diff --git a/Biz/Ide/ns.sh b/Biz/Ide/ns.sh
index 555380e..8c1a1a0 100755
--- a/Biz/Ide/ns.sh
+++ b/Biz/Ide/ns.sh
@@ -2,13 +2,13 @@
set -euo pipefail
fd --exclude=_ -t f . "${CODEROOT:?}" | sed "s,${CODEROOT:?}/*,,g" \
| fzf \
- --bind "alt-space:execute(bild {} && read -p [fin])" \
+ --bind "alt-space:execute(bild {} ; read -p [fin])" \
--bind "alt-enter:execute(vim {})" \
- --bind "alt-l:execute(lint {} && read -p [fin])" \
- --bind "enter:execute(repl {})" \
- --bind "ctrl-space:execute(ship {} && read -p [fin])" \
- --bind "alt-t:execute(bild {} && run {} test && read -p [fin])" \
- --bind "ctrl-/:change-preview-window(90%|hidden|)" \
+ --bind "alt-c:execute(lint {} ; read -p [fin])" \
+ --bind "enter:execute(repl.sh {})" \
+ --bind "ctrl-space:execute(ship.sh {} ; read -p [fin])" \
+ --bind "alt-t:execute(bild {} ; run.sh {} test ; read -p [fin])" \
+ --bind "ctrl-/:change-preview-window(right,88|right,70%|hidden|)" \
--bind "alt-0:change-preview(bat -p --color=always {})" \
--bind "alt-1:change-preview(git log --color=always --date=relative --abbrev-commit --pretty=format:'%Cred%h%Creset %s / %an %Creset%C(yellow)%d%Creset%Cgreen(%cr)%Creset' -- {})" \
--bind "alt-2:change-preview(git log --color=always {})" \
@@ -19,8 +19,8 @@ fd --exclude=_ -t f . "${CODEROOT:?}" | sed "s,${CODEROOT:?}/*,,g" \
--bind "backward-eof:abort" \
--bind "pgup:preview-page-up" \
--bind "pgdn:preview-page-down" \
- --header="repl: enter | edit: alt-enter | bild: alt-space | test: alt-t | lint: alt-l | ship: ctrl-space" \
+ --header="repl: enter | edit: alt-enter | bild: alt-space | test: alt-t | lint: alt-c | ship: ctrl-space" \
--header-first \
- --preview-window="border-sharp,88" \
+ --preview-window="border-sharp,bottom,70%" \
--preview "bat -p --color=always {}"
###