diff options
author | ptzz <ptzzptzzp@gmail.com> | 2015-09-30 22:51:40 +0200 |
---|---|---|
committer | hut <hut@lepus.uberspace.de> | 2015-10-04 01:34:05 +0200 |
commit | 84ed0e706eaa89d56af4133bc5185707cb715d9c (patch) | |
tree | d4a09751c43d951fa142a73811e108843b3c1b24 | |
parent | 0d2c7c8b5f21d4c4f9a2c9875557251dee58be92 (diff) | |
download | ranger-84ed0e706eaa89d56af4133bc5185707cb715d9c.tar.gz |
Open json files with $EDITOR by default
-rw-r--r-- | ranger/config/rifle.conf | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ranger/config/rifle.conf b/ranger/config/rifle.conf index 7cd9e790..36697e53 100644 --- a/ranger/config/rifle.conf +++ b/ranger/config/rifle.conf @@ -83,8 +83,8 @@ ext x?html?, has w3m, terminal = w3m "$@" # Define the "editor" for text files as first action mime ^text, label editor = $EDITOR -- "$@" mime ^text, label pager = "$PAGER" -- "$@" -!mime ^text, label editor, ext xml|csv|tex|py|pl|rb|js|sh|php = $EDITOR -- "$@" -!mime ^text, label pager, ext xml|csv|tex|py|pl|rb|js|sh|php = "$PAGER" -- "$@" +!mime ^text, label editor, ext xml|json|csv|tex|py|pl|rb|js|sh|php = $EDITOR -- "$@" +!mime ^text, label pager, ext xml|json|csv|tex|py|pl|rb|js|sh|php = "$PAGER" -- "$@" ext 1 = man "$1" ext s[wmf]c, has zsnes, X = zsnes "$1" @@ -196,6 +196,6 @@ label wallpaper, number 13, mime ^image, has feh, X = feh --bg-center "$1" label wallpaper, number 14, mime ^image, has feh, 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|js|sh|php = ask -label editor, !mime ^text, !ext xml|csv|tex|py|pl|rb|js|sh|php = $EDITOR -- "$@" -label pager, !mime ^text, !ext xml|csv|tex|py|pl|rb|js|sh|php = "$PAGER" -- "$@" + !mime ^text, !ext xml|json|csv|tex|py|pl|rb|js|sh|php = ask +label editor, !mime ^text, !ext xml|json|csv|tex|py|pl|rb|js|sh|php = $EDITOR -- "$@" +label pager, !mime ^text, !ext xml|json|csv|tex|py|pl|rb|js|sh|php = "$PAGER" -- "$@" |