# The function to use in place of the standard "cd"
+[[ "${SELECTOR_CD_HISTORY_SIZE}" ]] || SELECTOR_CD_HISTORY_SIZE=1000
+
function selector-cd () {
if [[ -z "$1" ]]; then
cd
if [[ -f ${SELECTOR_CD_HISTORY} ]]; then
TMP=$(mktemp /tmp/selector-cd.XXXXXX)
- tail -999 < ${SELECTOR_CD_HISTORY} > ${TMP}
+ tail -$((SELECTOR_CD_HISTORY_SIZE-1)) < ${SELECTOR_CD_HISTORY} > ${TMP}
cat ${TMP} > ${SELECTOR_CD_HISTORY}
rm -f ${TMP}
fi
function selector-cd-search () {
if [[ -f ${SELECTOR_CD_HISTORY} ]]; then
PATH_TEMP=$(mktemp /tmp/selector-cd-path.XXXXXX)
- selector -j -y -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 ${SELECTOR_CD_HISTORY_SIZE} -d -i -c 7,2,0,3 -o ${PATH_TEMP} -q ${SELECTOR_CD_HISTORY}
NEW_PATH="$(cat ${PATH_TEMP} | sed -e 's!~!'${HOME}'!')"
if [[ -d "${NEW_PATH}" ]]; then
selector-cd "$(cat ${PATH_TEMP} | sed -e 's!^~!'${HOME}'!')"