about summary refs log tree commit diff stats
path: root/html/apps/dquotes.subx.html
Commit message (Collapse)AuthorAgeFilesLines
* 6631Kartik Agaram2020-07-101-197/+197
|
* 6602Kartik Agaram2020-06-301-7/+7
|
* 6513Kartik Agaram2020-06-121-1627/+1641
|
* 6091Kartik Agaram2020-03-061-2/+2
|
* 6015Kartik Agaram2020-02-171-8/+8
|
* 6001Kartik Agaram2020-02-091-14/+14
|
* 5925Kartik Agaram2020-01-271-26/+26
|
* 5901Kartik Agaram2020-01-191-2/+2
|
* 5897 - rename comparison instructionsKartik Agaram
# Compatible with ranger 1.4.2 through 1.7.*
#
# Automatically change the directory in bash after closing ranger
#
# This is a bash function for .bashrc to automatically change the directory to
# the last visited one after ranger quits.
# To undo the effect of this function, you can type "cd -" to return to the
# original directory.

function ranger-cd {
    tempfile="$(mktemp)"
    /usr/bin/ranger --choosedir="$tempfile" "${@:-$(pwd)}"
    test -f "$tempfile" &&
    if [ "$(cat -- "$tempfile")" != "$(echo -n `pwd`)" ]; then
        cd -- "$(cat "$tempfile")"
    fi
    rm -f -- "$tempfile"
}

# This binds Ctrl-O to ranger-cd:
bind '"\C-o":"ranger-cd\C-m"'
p;id=999c529cb972079df3bc693945be34a77336ddf4'>5716
Kartik Agaram2019-10-261-1308/+1290
|
* 5701Kartik Agaram2019-10-171-42/+42
|
* 5684Kartik Agaram2019-09-211-8/+8
| | | | Support function-call syntax when linkifying functions in html files.
* 5683Kartik Agaram2019-09-201-663/+239
|
* 5661Kartik Agaram2019-09-151-1/+1
|
* 5629Kartik Agaram2019-09-061-1317/+1342
|
* 5607Kartik Agaram2019-09-011-3/+3
|
* 5600Kartik Agaram2019-08-311-2097/+2099
|
* 5592 - switch register names to lowercaseKartik Agaram2019-08-261-646/+646
|
* 5590Kartik Agaram2019-08-251-1/+1
|
* 5589Kartik Agaram2019-08-251-605/+178
|
* 5582Kartik Agaram2019-08-251-2358/+2359
|
* 5499Kartik Agaram2019-07-311-1/+1
|
* 5490Kartik Agaram2019-07-271-2/+2
|
* 5485 - promote SubX to top-levelKartik Agaram2019-07-271-0/+2617