[CHANGED] e alias into shell function.
This commit is contained in:
parent
fe68e45ec0
commit
5a43bccb8e
1 changed files with 4 additions and 2 deletions
|
|
@ -328,8 +328,10 @@ function svnst() {
|
||||||
rm -f $tmpfile
|
rm -f $tmpfile
|
||||||
}
|
}
|
||||||
|
|
||||||
alias e="$EDITOR"
|
function e() {
|
||||||
alias et="$EDITOR ."
|
"$EDITOR" "$@" &!
|
||||||
|
}
|
||||||
|
alias et="$EDITOR . >/dev/null &!"
|
||||||
|
|
||||||
# global aliases - work anywhere on line
|
# global aliases - work anywhere on line
|
||||||
alias -g C='|wc'
|
alias -g C='|wc'
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue