diff options
author | hut <hut@lepus.uberspace.de> | 2014-04-28 14:16:29 +0200 |
---|---|---|
committer | hut <hut@lepus.uberspace.de> | 2014-04-28 14:16:29 +0200 |
commit | 1f3a71cbf7e4604ce931f89dfd571968f53b6bba (patch) | |
tree | 7305cc29be41ae6eea18f4e8dbaa613c0acf06c9 | |
parent | b5faa2e41d19a92cc3d19c591254eee77f60cfa3 (diff) | |
parent | c826091a74e88102ca1795ab9798dd8b8498f653 (diff) | |
download | ranger-1f3a71cbf7e4604ce931f89dfd571968f53b6bba.tar.gz |
Merge remote-tracking branch 'perdu/patch_editor'
-rw-r--r-- | ranger/config/rifle.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ranger/config/rifle.conf b/ranger/config/rifle.conf index 364d7c28..68189cd7 100644 --- a/ranger/config/rifle.conf +++ b/ranger/config/rifle.conf @@ -79,9 +79,9 @@ ext x?html?, has w3m, terminal = w3m "$@" # Misc #------------------------------------------- # Define the "editor" for text files as first action -mime ^text, label editor = "$EDITOR" -- "$@" +mime ^text, label editor = $EDITOR -- "$@" mime ^text, label pager = "$PAGER" -- "$@" -!mime ^text, label editor, ext xml|csv|tex|py|pl|rb|sh|php = "$EDITOR" -- "$@" +!mime ^text, label editor, ext xml|csv|tex|py|pl|rb|sh|php = $EDITOR -- "$@" !mime ^text, label pager, ext xml|csv|tex|py|pl|rb|sh|php = "$PAGER" -- "$@" ext 1 = man "$1" @@ -184,5 +184,5 @@ label wallpaper, number 14, mime ^image, X = feh --bg-fill "$1" # Define the editor for non-text files + pager as last action !mime ^text, !ext xml|csv|tex|py|pl|rb|sh|php = ask -label editor, !mime ^text, !ext xml|csv|tex|py|pl|rb|sh|php = "$EDITOR" -- "$@" +label editor, !mime ^text, !ext xml|csv|tex|py|pl|rb|sh|php = $EDITOR -- "$@" label pager, !mime ^text, !ext xml|csv|tex|py|pl|rb|sh|php = "$PAGER" -- "$@" |