mirror of
https://github.com/theniceboy/.config.git
synced 2026-07-16 22:01:21 +08:00
10 lines
236 B
Python
10 lines
236 B
Python
from ranger.api.keys import *
|
|
|
|
# keymanager.unmap("browser", "n")
|
|
|
|
map = vim_aliases = KeyMapWithDirections()
|
|
map('u', fm.move(up=1))
|
|
map('e', fm.move(down=1))
|
|
|
|
keymanager.merge_all(map) # merge the new map into all existing ones.
|
|
|