Skip to content

Commit d2f502f

Browse files
committed
Use cd instead of pushd, add maintenance note
The use of pushd is surprising because fish's alt-left and alt-right don't use the dirstack; instead they use their own history. pushd/popd/dirs is only for people used to these builtins. See fish-shell/fish-shell#12166
1 parent 067e867 commit d2f502f

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
[![Build Status](https://travis-ci.org/jethrokuan/z.svg?branch=master)](https://travis-ci.org/jethrokuan/z)
22

3+
# Maintenance Note
4+
5+
This package is looking for a new maintainer, let us know if you're interested.
6+
37
# Z
48

59
**z** is a port of [z](https://github.com/rupa/z) for the [fish shell](https://fishshell.com).
@@ -8,7 +12,7 @@
812

913
A _pure-fish_ port means **z** is _fast_ and _fish-friendly_, with tab-completions and lazy-loading. Top that off with great customizability and a small amount of added functionality.
1014

11-
Originally written by [@jethrokuan](https://github.com/jethrokuan/), co-maintained with [@krobelus](https://github.com/krobelus).
15+
Originally written by [@jethrokuan](https://github.com/jethrokuan/).
1216

1317
## Installation
1418

functions/__z.fish

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,6 @@ function __z -d "Jump to a recent directory."
169169
echo "Not sure how to open file manager"; and return 1
170170
end
171171
else
172-
pushd "$target"
172+
cd "$target"
173173
end
174174
end

0 commit comments

Comments
 (0)