Fix bug in j where everything gets deleted
This commit is contained in:
parent
dbab1ff719
commit
af7e91b4eb
1 changed files with 1 additions and 1 deletions
2
zsh/j.sh
2
zsh/j.sh
|
|
@ -13,7 +13,7 @@ function _j_add() {
|
|||
}
|
||||
function _j_delete() {
|
||||
local name=$1;
|
||||
grep -Ev "^${name}|" "$STORE" | sponge "$STORE"
|
||||
grep -Ev "^${name}\|" "$STORE" | sponge "$STORE"
|
||||
}
|
||||
|
||||
function _j_jump() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue