All Questions
4 questions
0
votes
1
answer
506
views
Ranger file manager as the singleton instance on shell startup
Problem:
I use zsh and added to its config file a line of launching ranger on startup.
.zshrc
# A few other settings and commands.
ZSH_TMUX_AUTOSTART="true"
plugins=(tmux ...)
source ranger
...
2
votes
2
answers
1k
views
Neomutt run command to attach file on macro key press
I'm trying to use ranger to attach files to a mail in NeoMutt. What I have so far is
Run ranger to select the file to attach and save its name to /tmp/muttattach with
ranger --choosefile=/tmp/...
0
votes
2
answers
330
views
How to change relative symlinked path to "actual" one (in ranger or terminal)
What is actual path? Consider folder A in the file system and a symlinked B to it. Consider currently in ranger (or terminal) inside a sub-directory within B such as /home/B/sub1/sub2 which is in fact ...
6
votes
2
answers
1k
views
How to bind a keyboard shortcut in zsh to a program requiring stdin?
This is a follow-up to this question: I'm trying to create a keyboard shortcut for the terminal file manager ranger, in order to jump from the zsh prompt into the file manager with a single keystroke. ...