Added a short explanation for the new bash-selector.sh.
[selector.git] / bash-selector.sh
1 #!/bin/bash
2
3 #########################################################################
4 # This program is free software: you can redistribute it and/or modify  #
5 # it under the terms of the version 3 of the GNU General Public License #
6 # as published by the Free Software Foundation.                         #
7 #                                                                       #
8 # This program is distributed in the hope that it will be useful, but   #
9 # WITHOUT ANY WARRANTY; without even the implied warranty of            #
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      #
11 # General Public License for more details.                              #
12 #                                                                       #
13 # You should have received a copy of the GNU General Public License     #
14 # along with this program. If not, see <http://www.gnu.org/licenses/>.  #
15 #                                                                       #
16 # Written by and Copyright (C) Francois Fleuret                         #
17 # Contact <francois.fleuret@idiap.ch> for comments & bug reports        #
18 #########################################################################
19
20 set -e
21
22 # Selector based history
23
24 function selector-history () {
25     selector --bash -u -c 7,4,0,3 -q <(history)
26 }
27
28 # Maintains a list of visited directories and provide a selector-based
29 # command to go back to any of them.
30
31 export SELECTOR_CD_HISTORY
32
33 [[ "${SELECTOR_CD_HISTORY}" ]] || SELECTOR_CD_HISTORY=${HOME}/.selector-cd-history
34
35 function selector-cd () {
36     if [[ -z "$1" ]]; then
37         cd
38     else
39         cd "$@"
40     fi
41     echo $PWD | sed -e "s!${HOME}!~!" >> ${SELECTOR_CD_HISTORY}
42 }
43
44 function selector-cd-search () {
45     PATH_TEMP=$(mktemp /tmp/selector-cd-path.XXXXXX)
46     selector -u -t "cd" -l 10000 -d -i -c 7,2,0,3 -o ${PATH_TEMP} -q ${SELECTOR_CD_HISTORY}
47     NEW_PATH="$(cat ${PATH_TEMP} | sed -e 's!~!'${HOME}'!')"
48     if [[ -s "${NEW_PATH}" ]]; then
49         selector-cd "$(cat ${PATH_TEMP} | sed -e 's!~!'${HOME}'!')"
50     fi
51     \rm ${PATH_TEMP}
52 }
53
54 alias cd=selector-cd
55
56 # M-r puts the selected history line in place of the current one
57
58 bind '"\C-[r":"\C-a\C-kselector-history\C-m"'
59
60 # M-t appends the selected history line and the end of the current one
61 # bind '"\C-[t":"\C-a\C-kselector-history\C-m\C-a\C-y\C-e"'
62
63 # M-c provides a dynamic list of directories to cd into
64
65 bind '"\C-[c":"\C-a\C-kselector-cd-search\C-m"'