X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?a=blobdiff_plain;f=bash-selector.sh;h=89a4a430f669cefd4c523d1425c8b8db1d7261e7;hb=f9cb0dfa391b3ad2a6e41d93f8896b26329e73d0;hp=32e4925957e8d20d464620cdd77748059ce6388e;hpb=a2e9ecbe63af0f7b4b84b1b2a81562714746bcdc;p=selector.git diff --git a/bash-selector.sh b/bash-selector.sh index 32e4925..89a4a43 100755 --- a/bash-selector.sh +++ b/bash-selector.sh @@ -14,16 +14,17 @@ # along with this program. If not, see . # # # # Written by and Copyright (C) Francois Fleuret # -# Contact for comments & bug reports # +# Contact for comments & bug reports # ######################################################################### -# This script installs two keybinding: +# This script installs two key-bindings: # -# Alt-R for selector-based command history +# Alt-r for selector-based command history # -# Alt-C for selector-based directoy history +# Alt-c for selector-based directoy history # -# It has to be called with ". bash-selector.sh" +# Note that you have to call it with ". bash-selector.sh" otherwise +# the key-bindings will not be effective in your current bash ###################################################################### # Selector-based command history @@ -53,17 +54,17 @@ function selector-cd () { fi TMP=$(mktemp /tmp/selector-cd.XXXXXX) tail -1000 < ${SELECTOR_CD_HISTORY} > ${TMP} - echo $PWD | sed -e "s!${HOME}!~!" >> ${TMP} + echo $PWD | sed -e "s!^${HOME}!~!" >> ${TMP} cat ${TMP} > ${SELECTOR_CD_HISTORY} rm -f ${TMP} } function selector-cd-search () { PATH_TEMP=$(mktemp /tmp/selector-cd-path.XXXXXX) - selector -u -t "cd" -l 10000 -d -i -c 7,2,0,3 -o ${PATH_TEMP} -q ${SELECTOR_CD_HISTORY} + selector -u -t "cd" -l 1000 -d -i -c 7,2,0,3 -o ${PATH_TEMP} -q ${SELECTOR_CD_HISTORY} NEW_PATH="$(cat ${PATH_TEMP} | sed -e 's!~!'${HOME}'!')" if [[ -s "${NEW_PATH}" ]]; then - selector-cd "$(cat ${PATH_TEMP} | sed -e 's!~!'${HOME}'!')" + selector-cd "$(cat ${PATH_TEMP} | sed -e 's!^~!'${HOME}'!')" fi \rm ${PATH_TEMP} }