Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove read arguments not available in zsh #12

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 18 additions & 3 deletions hyperjump
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,23 @@ function jr() {
else
if [[ -z "$1" ]]; then
echo "We need a nickname for this directory. Use jr <name> or specify it now."
read -p "[C]ancel, [U]se \"$nick\", Enter [N]ickname [C/U/N]: " -n 1 -e choice
echo -n "[C]ancel, [U]se \"$nick\", Enter [N]ickname [C/U/N]: "
if [[ -n ${ZSH_VERSION-} ]]
then
read -k 1 choice
echo
else
read -n 1 -e choice
fi
case "$choice" in
"U" | "u" )
echo "We are going to use $nick as the nickname for this directory."
;;
"N" | "n" )
local nick=
while [[ "$nick" = "" ]]; do
read -p "Enter a Nickname for this Directory and Press [Enter]: " -e nick
echo -n "Enter a Nickname for this Directory and Press [Enter]: "
read nick
done
;;
* )
Expand Down Expand Up @@ -87,7 +95,14 @@ function jf() {
fi

echo "$nickname : $wd"
read -p "Forget It? [Y/N]: " -n 1 -e choice
echo -n "Forget It? [Y/N]: "
if [[ -n ${ZSH_VERSION-} ]]
then
read -k 1 choice
echo
else
read -n 1 -e choice
fi
case "$choice" in
"Y" | "y" )
local tempfile=$(mktemp -t "XXXjumpdb")
Expand Down