Whitespace changes

Delete unnecessary indentation and convert all spaces to tabs.
This commit is contained in:
2020-06-30 04:10:47 +02:00
parent a180a09f6f
commit da474b7899
5 changed files with 538 additions and 535 deletions

View File

@@ -42,8 +42,10 @@ function bwpwd() {
## creates directory and changes into it
function mkcd () {
mkdir "$@" # create directory
while [ $# -gt 1 ]; do # shift arguments if mkdir options were used
# Create directory
mkdir "$@"
# shift arguments if mkdir options were used
while [ $# -gt 1 ]; do
shift
done
if [ -d "$1" ]; then

View File

@@ -25,6 +25,7 @@
zle -N zle-line-finish
bindkey '^[h' run-help
## History
## Alternatives to check out: {up,down}-line-or-search
bindkey '^[[A' history-substring-search-up