functions: remove debug statements in vimscratch

fix-ci
bretello 2023-09-25 12:39:24 +02:00
parent 125a4e7aed
commit ee531d18cd
1 changed files with 0 additions and 2 deletions

View File

@ -1,6 +1,5 @@
# open vim with a scratch window that can be discarded on exit.
vimscratch() {
set -x
local args
# if running in a pipe, use stdin (-) as arg.
# -t checks if the given FD is a terminal
@ -8,5 +7,4 @@ vimscratch() {
stdin_arg="-"
fi
vim -c "set buftype=nofile" $@ $stdin_arg
set +x
}