X-Git-Url: https://www.fleuret.org/cgi-bin/gitweb/gitweb.cgi?a=blobdiff_plain;f=bash-selector.sh;h=e7fb46101478eea86399d3c60d6054738ca98c0c;hb=1c1b9424c49bab51042fbd3730afa38bcd8b4f07;hp=da5bf93f24cd79f46e5393956e2c98438f8a49c8;hpb=98eb78e7763d299e420d670482b3642e04fd1d2e;p=selector.git diff --git a/bash-selector.sh b/bash-selector.sh index da5bf93..e7fb461 100755 --- a/bash-selector.sh +++ b/bash-selector.sh @@ -37,7 +37,7 @@ fi ###################################################################### function selector-history () { - selector --bash -u -c 7,4,0,3 -q <(history) + selector --bash -j -y -u -c 7,4,0,3 -q <(history) } ###################################################################### @@ -71,7 +71,7 @@ function selector-cd () { function selector-cd-search () { PATH_TEMP=$(mktemp /tmp/selector-cd-path.XXXXXX) - selector -u -t "cd" -l 1000 -d -i -c 7,2,0,3 -o ${PATH_TEMP} -q ${SELECTOR_CD_HISTORY} + selector -j -y -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}'!')" @@ -95,21 +95,15 @@ if [[ "$1" ]]; then case "$1" in --hist) - # M-r puts the selected history line in place of the current one - bind '"\C-[r":"\C-a\C-kselector-history\C-m"' - ;; --cd) - # M-c provides a dynamic list of directories to cd into - bind '"\C-[c":"\C-a\C-kselector-cd-search\C-m"' ;; - *) echo "Unknown argument $1" >&2 ;; @@ -123,7 +117,7 @@ else echo "source bash-selector.sh <--hist|--cd> [...]" echo - echo "Define bash function to use selector for history search and/or intelligent" - echo "cd history." + echo "Defines bash functions, and installs key-bindings and aliases to use selector" + echo "for history search with M-r and/or intelligent cd history with M-c." fi