diff options
author | Ben Sima <ben@bsima.me> | 2024-05-23 22:06:37 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2024-05-23 22:08:40 -0400 |
commit | 90373038944df0ea78331256535af7970ff764f6 (patch) | |
tree | 7b29e2f0a4ada85f2ee5d81a6dd24b7dfc15ae9d | |
parent | 8e96ed57dca9ddc7e0067dbce52e0aa52754a7c6 (diff) |
Lint fix command in ns.sh
I basically never want to not fix my code from here. Presumably if I'm invoking
lint from ns.sh, then I don't have the file open yet, or I just closed it. So
it's not super helpful to show me a bunch of things I need to fix and then tell
me that I could autofix them but don't actually fix them for me.
-rwxr-xr-x | Biz/Ide/ns.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Biz/Ide/ns.sh b/Biz/Ide/ns.sh index 8c1a1a0..8641207 100755 --- a/Biz/Ide/ns.sh +++ b/Biz/Ide/ns.sh @@ -4,7 +4,7 @@ fd --exclude=_ -t f . "${CODEROOT:?}" | sed "s,${CODEROOT:?}/*,,g" \ | fzf \ --bind "alt-space:execute(bild {} ; read -p [fin])" \ --bind "alt-enter:execute(vim {})" \ - --bind "alt-c:execute(lint {} ; read -p [fin])" \ + --bind "alt-c:execute(lint -f {} ; 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])" \ |