Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Ranger Cheatsheet

Ranger Cheatsheet

General

Shortcut Description
ranger Start Ranger
Q Quit Ranger
R Reload current directory
? Ranger Manpages / Shortcuts

Movement

Shortcut Description
k up
j down
h parent directory
l subdirectory
gg go to top of list
G go t bottom of list
J half page down
K half page up
H History Back
L History Forward
~ Switch the view

File Operations

Shortcut Description
<Enter> Open
r open file with
z toggle settings
o change sort order
zh view hidden files
cw rename current file
yy yank / copy
dd cut
pp paste
/ search for files :search
n next match
N prev match
<delete> Delete

Commands

Shortcut Description
: Execute Range Command
! Execute Shell Command
chmod Change file Permissions
du Disk Usage Current Directory
S Run the terminal in your current ranger window (exit to go back to ranger)

Tabs

Shortcut Description
C-n Create new tab
C-w Close current tab
tab Next tab
shift + tab Previous tab
alt + [n] goto / create [n] tab

File substituting

Shortcut Description
%f Substitute highlighted file
%d Substitute current directory
%s Substitute currently selected files
%t Substitute currently tagged files

Example for substitution

:bulkrename %s

Marker

Shortcut Description
m + <letter> Create Marker
um + <letter> Delete Marker
' + <letter> Go to Marker
t tag a file with an *
t"<any> tag a file with your desired mark

thx to the comments section for additional shortcuts! post your suggestions there!

@CPPF0rev3r
Copy link

Thanks!

@Narice
Copy link

Narice commented Dec 12, 2019

Nice thanks!
There is a small typo for the N (prev search) command

@heroheman
Copy link
Author

There is a small typo for the N (prev search) command

Thanks! Fixed it.

@benwoodward
Copy link

Thanks for this. Suggested additions: dd for cut, and pp for paste. Useful for moving files around.

@heroheman
Copy link
Author

Thanks for this. Suggested additions: dd for cut, and pp for paste. Useful for moving files around.

Thanks for the suggestion - added both.

@dagadbm
Copy link

dagadbm commented Jun 15, 2020

how can i create a new file?

@gutoxp
Copy link

gutoxp commented Jun 19, 2020

how can i create a new file?

:e file.txt

it will create and open on the text editor

@Zeioth
Copy link

Zeioth commented Jun 23, 2020

Since your cheatsheet have a good pagerank, it would be nice to add the markers section:

  • m+letter to create
  • um+letter to delete
  • '+letter to use)

@heroheman
Copy link
Author

Since your cheatsheet have a good pagerank, it would be nice to add the markers section:

  • m+letter to create
  • um+letter to delete
  • '+letter to use)

Did not know about this. Thanks for the hint and added it.
And I really don't know why its ranked that high. 🤷

@mareksubocz
Copy link

I believe there's a mistake in '+letter marks shortcut. It says it deletes the mark. Shouldn't it be to go to it?

@miku86
Copy link

miku86 commented Dec 3, 2020

I believe there's a mistake in '+letter marks shortcut. It says it deletes the mark. Shouldn't it be to go to it?

Yes. You hit ' + the created letter to go to the destination.

Other useful commands:

S: run the terminal in your current ranger window (exit to go back to ranger window)
t: tag a file with an * (great to mark files)
t"<any>: tag a file with your desired mark (I use this for videos I already watched)

I would also add the arrow keys as alternatives for the vim keys j, k, h, l, this makes it easier for ranger beginners.

@dzintars
Copy link

dzintars commented Feb 4, 2021

~ - Switch the views

@kave-me
Copy link

kave-me commented Feb 28, 2021

Perfect

@heroheman
Copy link
Author

I believe there's a mistake in '+letter marks shortcut. It says it deletes the mark. Shouldn't it be to go to it?

Yes. You hit ' + the created letter to go to the destination.

Other useful commands:

S: run the terminal in your current ranger window (exit to go back to ranger window)
t: tag a file with an * (great to mark files)
t"<any>: tag a file with your desired mark (I use this for videos I already watched)

I would also add the arrow keys as alternatives for the vim keys j, k, h, l, this makes it easier for ranger beginners.

thx for the suggestions, did not know about the t * marker!

@badele
Copy link

badele commented Mar 19, 2021

+ + letter + letter | add file permissions (chmod)
- + letter + letter | remove permissions (chmod)

@miku86
Copy link

miku86 commented Mar 31, 2021

I believe there's a mistake in '+letter marks shortcut. It says it deletes the mark. Shouldn't it be to go to it?

@heroheman Can you fix this?

Old: ' + <letter> Delete Marker

New: ' + <letter> Go to Marker

Thank you! :)

@heroheman
Copy link
Author

I believe there's a mistake in '+letter marks shortcut. It says it deletes the mark. Shouldn't it be to go to it?

@heroheman Can you fix this?

Old: ' + <letter> Delete Marker

New: ' + <letter> Go to Marker

Thank you! :)

Done that, sorry for the delay, keep them coming.

@xNaCly
Copy link

xNaCly commented Jun 28, 2021

great cheat sheet 😄 👍

@maciasello
Copy link

Tagging custom tag does not have t in front.

Old: t"<any>
New: "<any letter>

Keep up the great list :D

@GiorgosChr
Copy link

Is there a way to type shell commands and show the output?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment