Skip to content

Commit 6a0aa89

Browse files
authored
Fix up/down keys reversed in resize-window-alias-list
1 parent 1948057 commit 6a0aa89

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

resize-window.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,9 +134,9 @@ Main data structure of the dispatcher with the form:
134134

135135
(defvar resize-window-alias-list
136136
'((right ?f)
137-
(up ?n)
137+
(down ?n)
138138
(left ?b)
139-
(down ?p))
139+
(up ?p))
140140
"List of aliases for commands.
141141
Rather than have to use n, etc, you can alias keys for others.")
142142

0 commit comments

Comments
 (0)