pulled everything into master

This commit is contained in:
Luke 2023-06-03 17:56:51 -07:00
parent 9a37b1f6f2
commit 9549062157
2 changed files with 0 additions and 1 deletions

View file

@ -1,18 +0,0 @@
#!/bin/bash
# When notepad++ is available, use it
function npp() {
export IFS=$'\n'
NOTEPADPP_EXE='/c/Program Files/Notepad++/notepad++.exe'
if [[ -e "${NOTEPADPP_EXE}" ]]; then
echo 'notepad++.exe '$*' &'
"${NOTEPADPP_EXE}" $* &
return 0
else
echo "notepad++ not found."
return 1
fi
}
alias _wrapping_fix='kill -WINCH $$'