Whitespace changes
Delete unnecessary indentation and convert all spaces to tabs.
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user