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
|
## creates directory and changes into it
|
||||||
function mkcd () {
|
function mkcd () {
|
||||||
mkdir "$@" # create directory
|
# Create directory
|
||||||
while [ $# -gt 1 ]; do # shift arguments if mkdir options were used
|
mkdir "$@"
|
||||||
|
# shift arguments if mkdir options were used
|
||||||
|
while [ $# -gt 1 ]; do
|
||||||
shift
|
shift
|
||||||
done
|
done
|
||||||
if [ -d "$1" ]; then
|
if [ -d "$1" ]; then
|
||||||
|
|||||||
@@ -25,6 +25,7 @@
|
|||||||
zle -N zle-line-finish
|
zle -N zle-line-finish
|
||||||
|
|
||||||
bindkey '^[h' run-help
|
bindkey '^[h' run-help
|
||||||
|
|
||||||
## History
|
## History
|
||||||
## Alternatives to check out: {up,down}-line-or-search
|
## Alternatives to check out: {up,down}-line-or-search
|
||||||
bindkey '^[[A' history-substring-search-up
|
bindkey '^[[A' history-substring-search-up
|
||||||
|
|||||||
Reference in New Issue
Block a user