diff options
author | toonn <toonn@toonn.io> | 2021-02-19 19:30:03 +0100 |
---|---|---|
committer | toonn <toonn@toonn.io> | 2021-02-19 19:30:03 +0100 |
commit | e5a06fa2180fd3ba2f86172be8fddd469425749b (patch) | |
tree | b5d9b18da314be5461380f550ccecfc87c0f612a | |
parent | 6035c7097b990f844cda4fa4d957210165def106 (diff) | |
download | ranger-e5a06fa2180fd3ba2f86172be8fddd469425749b.tar.gz |
shell_automatic_cd: Fix function name in bind command
-rw-r--r-- | examples/shell_automatic_cd.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/shell_automatic_cd.sh b/examples/shell_automatic_cd.sh index 391946c7..6158f74a 100644 --- a/examples/shell_automatic_cd.sh +++ b/examples/shell_automatic_cd.sh @@ -19,5 +19,5 @@ ranger_cd() { rm -f -- "$temp_file" } -# This binds Ctrl-O to ranger-cd: -bind '"\C-o":"ranger-cd\C-m"' +# This binds Ctrl-O to ranger_cd: +bind '"\C-o":"ranger_cd\C-m"' |