mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-08-07 06:08:39 +02:00
Implement performance improvements
As @mcornella stated in #5500 I replaced the parentheses with curly braces.
This commit is contained in:
parent
f38b832da5
commit
3580bffc6e
1 changed files with 1 additions and 1 deletions
|
|
@ -9,7 +9,7 @@
|
||||||
export MARKPATH=$HOME/.marks
|
export MARKPATH=$HOME/.marks
|
||||||
|
|
||||||
jump() {
|
jump() {
|
||||||
cd -P "$MARKPATH/$1" 2>/dev/null || (echo "No such mark: $1"; return 1)
|
cd -P "$MARKPATH/$1" 2>/dev/null || {echo "No such mark: $1"; return 1}
|
||||||
}
|
}
|
||||||
|
|
||||||
mark() {
|
mark() {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue