summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-01-14 00:25:06 +0100
committerhut <hut@lavabit.com>2010-01-14 00:25:06 +0100
commitf3852bbbf8363cc52a5a6e62d658873204c2949e (patch)
tree9ffdcd9acd3f13922e186aa4612b0163a9b5055b
parentb6e32668dd277f53a4a52451d9a3893a45baa3d7 (diff)
downloadranger-f3852bbbf8363cc52a5a6e62d658873204c2949e.tar.gz
keys: improvements
-rw-r--r--ranger/defaults/keys.py154
-rw-r--r--ranger/keyapi.py5
2 files changed, 99 insertions, 60 deletions
diff --git a/ranger/defaults/keys.py b/ranger/defaults/keys.py
index 4cf5bc0f..709ea8d8 100644
--- a/ranger/defaults/keys.py
+++ b/ranger/defaults/keys.py
@@ -23,47 +23,59 @@ keys are one or more key-combinations which are either:
 fnc is a function which is called with the CommandArgument object.
 
 The CommandArgument object has these methods:
-cmdarg.fm: the file manager instance
-cmdarg.wdg: the widget or ui instance
-cmdarg.n: the number typed before the key combination (if allowed)
-cmdarg.keys: the string representation of the used key combination
-cmdarg.keybuffer: the keybuffer instance
+arg.fm: the file manager instance
+arg.wdg: the widget or ui instance
+arg.n: the number typed before the key combination (if allowed)
+arg.keys: the string representation of the used key combination
+arg.keybuffer: the keybuffer instance
 
 Check ranger.keyapi for more information
 """
 
 from ranger.keyapi import *
 
-def system_functions(command_list):
-	"""Each commandlist should have those."""
-	bind, hint = make_abbreviations(command_list)
+def _vimlike_aliases(command_list):
+	bind, hint, alias = make_abbreviations(command_list)
 
-	bind(KEY_RESIZE, fm.resize())
-	bind(KEY_MOUSE, fm.handle_mouse())
-	bind('Q', fm.exit())
-	bind(ctrl('L'), fm.redraw_window())
+	# the key 'k' will always do the same as KEY_UP, etc.
+	alias(KEY_UP, 'k')
+	alias(KEY_DOWN, 'j')
+	alias(KEY_LEFT, 'h')
+	alias(KEY_RIGHT, 'l')
+
+	alias(KEY_NPAGE, ctrl('f'))
+	alias(KEY_PPAGE, ctrl('b'))
+	alias(KEY_HOME, 'gg')
+	alias(KEY_END, 'G')
 
 def initialize_commands(command_list):
 	"""Initialize the commands for the main user interface"""
 
-	bind, hint = make_abbreviations(command_list)
+	bind, hint, alias = make_abbreviations(command_list)
 
 	# -------------------------------------------------------- movement
-	bind('j', KEY_DOWN, fm.move_pointer(relative=1))
-	bind('k', KEY_UP, fm.move_pointer(relative=-1))
-	bind('l', KEY_RIGHT, fm.move_right())
-	bind('h', KEY_LEFT, KEY_BACKSPACE, DEL, fm.move_left(1))
+	_vimlike_aliases(command_list)
+	command_list.alias(KEY_LEFT, KEY_BACKSPACE, DEL)
+
+	bind(KEY_DOWN, fm.move_pointer(relative=1))
+	bind(KEY_UP, fm.move_pointer(relative=-1))
+	bind(KEY_RIGHT, fm.move_right())
+	bind(KEY_LEFT, KEY_BACKSPACE, DEL, fm.move_left(1))
+	bind(KEY_HOME, fm.move_pointer(absolute=0))
+	bind(KEY_END, fm.move_pointer(absolute=-1))
+
+	bind(KEY_HOME, fm.move_pointer(absolute=0))
+	bind(KEY_END, fm.move_pointer(absolute=-1))
 
 	bind(KEY_ENTER, ctrl('j'), fm.move_right(mode=1))
 
-	bind('gg', KEY_HOME, fm.move_pointer(absolute=0))
-	bind('G', KEY_END, fm.move_pointer(absolute=-1))
 	bind('%', fm.move_pointer_by_percentage(absolute=50))
-	bind(KEY_NPAGE, ctrl('f'), fm.move_pointer_by_pages(1))
-	bind(KEY_PPAGE, ctrl('b'), fm.move_pointer_by_pages(-1))
+	bind(KEY_NPAGE, fm.move_pointer_by_pages(1))
+	bind(KEY_PPAGE, fm.move_pointer_by_pages(-1))
 	bind('J', ctrl('d'), fm.move_pointer_by_pages(0.5))
 	bind('K', ctrl('u'), fm.move_pointer_by_pages(-0.5))
 
+	# --------------------------------------------------------- history
 	bind('H', fm.history_go(-1))
 	bind('L', fm.history_go(1))
 
@@ -161,7 +173,7 @@ def initialize_commands(command_list):
 	bind('w', lambda arg: arg.fm.ui.open_taskview())
 
 	# ------------------------------------------------ system functions
-	system_functions(command_list)
+	_system_functions(command_list)
 	bind('ZZ', fm.exit())
 	bind(ctrl('R'), fm.reset())
 	bind('R', fm.reload_cwd())
@@ -177,86 +189,110 @@ def initialize_commands(command_list):
 
 def initialize_console_commands(command_list):
 	"""Initialize the commands for the console widget only"""
+	bind, hint, alias = make_abbreviations(command_list)
 
-	bind, hint = make_abbreviations(command_list)
-
-	# movement
+	# -------------------------------------------------------- movement
 	bind(KEY_UP, wdg.history_move(-1))
 	bind(KEY_DOWN, wdg.history_move(1))
+
 	bind(ctrl('b'), KEY_LEFT, wdg.move(relative = -1))
 	bind(ctrl('f'), KEY_RIGHT, wdg.move(relative = 1))
 	bind(ctrl('a'), KEY_HOME, wdg.move(absolute = 0))
 	bind(ctrl('e'), KEY_END, wdg.move(absolute = -1))
+
+	# ----------------------------------------- deleting / pasting text
 	bind(ctrl('d'), KEY_DC, wdg.delete(0))
 	bind(ctrl('h'), KEY_BACKSPACE, DEL, wdg.delete(-1))
 	bind(ctrl('w'), wdg.delete_word())
 	bind(ctrl('k'), wdg.delete_rest(1))
 	bind(ctrl('u'), wdg.delete_rest(-1))
 	bind(ctrl('y'), wdg.paste())
-	bind(KEY_F1, lambda arg: arg.fm.display_command_help(arg.wdg))
-
-	# system functions
-	system_functions(command_list)
-	bind(ctrl('c'), ESC, wdg.close())
-	bind(ctrl('j'), KEY_ENTER, wdg.execute())
-	bind(TAB, wdg.tab())
-	bind(KEY_BTAB, wdg.tab(-1))
 
-	# type keys
+	# ----------------------------------------------------- typing keys
 	def type_key(arg):
 		arg.wdg.type_key(arg.keys)
 
 	for i in range(ord(' '), ord('~')+1):
 		bind(i, type_key)
 
+	# ------------------------------------------------ system functions
+	_system_functions(command_list)
+
+	bind(KEY_F1, lambda arg: arg.fm.display_command_help(arg.wdg))
+	bind(ctrl('c'), ESC, wdg.close())
+	bind(ctrl('j'), KEY_ENTER, wdg.execute())
+	bind(TAB, wdg.tab())
+	bind(KEY_BTAB, wdg.tab(-1))
+
 	command_list.rebuild_paths()
 
+
 def initialize_taskview_commands(command_list):
 	"""Initialize the commands for the TaskView widget"""
+	bind, hint, alias = make_abbreviations(command_list)
+	_basic_movement(command_list)
+	_system_functions(command_list)
 
-	system_functions(command_list)
-	bind, hint = make_abbreviations(command_list)
-
-	bind('j', KEY_DOWN, wdg.move(relative=1))
-	bind('k', KEY_UP, wdg.move(relative=-1))
-	bind('gg', wdg.move(absolute=0))
-	bind('G', wdg.move(absolute=-1))
+	# -------------------------------------------------- (re)move tasks
 	bind('K', wdg.task_move(0))
 	bind('J', wdg.task_move(-1))
+	bind('dd', wdg.task_remove())
 
+	# ------------------------------------------------ system functions
 	bind('?', fm.display_help())
-
-	bind('dd', wdg.task_remove())
 	bind('w', 'q', ESC, ctrl('d'), ctrl('c'),
 			lambda arg: arg.fm.ui.close_taskview())
 
 	command_list.rebuild_paths()
 
-def initialize_pager_commands(command_list):
-	bind, hint = make_abbreviations(command_list)
-	initialize_embedded_pager_commands(command_list)
 
+def initialize_pager_commands(command_list):
+	bind, hint, alias = make_abbreviations(command_list)
+	_base_pager_commands(command_list)
 	bind('q', 'i', ESC, KEY_F1, lambda arg: arg.fm.ui.close_pager())
 	command_list.rebuild_paths()
 
+
 def initialize_embedded_pager_commands(command_list):
-	system_functions(command_list)
-	bind, hint = make_abbreviations(command_list)
+	bind, hint, alias = make_abbreviations(command_list)
+	_base_pager_commands(command_list)
+	bind('q', 'i', ESC, lambda arg: arg.fm.ui.close_embedded_pager())
+	command_list.rebuild_paths()
 
-	bind('?', fm.display_help())
 
-	bind('j', KEY_DOWN, wdg.move(relative=1))
-	bind('k', KEY_UP, wdg.move(relative=-1))
-	bind('gg', KEY_HOME, wdg.move(absolute=0))
-	bind('G', KEY_END, wdg.move(absolute=-1))
+def _base_pager_commands(command_list):
+	bind, hint, alias = make_abbreviations(command_list)
+	_basic_movement(command_list)
+	_vimlike_aliases(command_list)
+	_system_functions(command_list)
+
+	# -------------------------------------------------------- movement
+	bind(KEY_LEFT, wdg.move_horizontal(relative=-4))
+	bind(KEY_RIGHT, wdg.move_horizontal(relative=4))
+	bind(KEY_NPAGE, wdg.move(relative=1, pages=True))
+	bind(KEY_PPAGE, wdg.move(relative=-1, pages=True))
 	bind('J', ctrl('d'), wdg.move(relative=0.5, pages=True))
 	bind('K', ctrl('u'), wdg.move(relative=-0.5, pages=True))
-	bind(KEY_NPAGE, ctrl('f'), wdg.move(relative=1, pages=True))
-	bind(KEY_PPAGE, ctrl('b'), wdg.move(relative=-1, pages=True))
+
+	# ---------------------------------------------------------- others
 	bind('E', fm.edit_file())
+	bind('?', fm.display_help())
 
-	bind('h', wdg.move_horizontal(relative=-4))
-	bind('l', wdg.move_horizontal(relative=4))
 
-	bind('q', 'i', ESC, lambda arg: arg.fm.ui.close_embedded_pager())
-	command_list.rebuild_paths()
+def _system_functions(command_list):
+	# Each commandlist should have this bindings
+	bind, hint, alias = make_abbreviations(command_list)
+
+	bind(KEY_RESIZE, fm.resize())
+	bind(KEY_MOUSE, fm.handle_mouse())
+	bind('Q', fm.exit())
+	bind(ctrl('L'), fm.redraw_window())
+
+
+def _basic_movement(command_list):
+	bind, hint, alias = make_abbreviations(command_list)
+
+	bind(KEY_DOWN, wdg.move(relative=1))
+	bind(KEY_UP, wdg.move(relative=-1))
+	bind(KEY_HOME, wdg.move(absolute=0))
+	bind(KEY_END, wdg.move(absolute=-1))
diff --git a/ranger/keyapi.py b/ranger/keyapi.py
index 93ee478b..c8c60b77 100644
--- a/ranger/keyapi.py
+++ b/ranger/keyapi.py
@@ -27,7 +27,10 @@ def make_abbreviations(command_list):
 	def hint(*args):
 		command_list.hint(args[-1], *args[:-1])
 
-	return bind, hint
+	def alias(*args):
+		command_list.alias(*args)
+
+	return bind, hint, alias
 
 class Wrapper(object):
 	def __init__(self, firstattr):
ame/bouml/128002.diagram?h=v1.5.2&id=f6f26231a1a2c886f43d9ec965eb7903180067fb'>^
61de0a4d ^
cfbb8c84 ^
61de0a4d ^
cfbb8c84 ^
61de0a4d ^
cfbb8c84 ^
61de0a4d ^
cfbb8c84 ^
51a54027 ^

61de0a4d ^


cfbb8c84 ^


61de0a4d ^



cfbb8c84 ^


61de0a4d ^



cfbb8c84 ^


61de0a4d ^


cfbb8c84 ^


61de0a4d ^



cfbb8c84 ^


61de0a4d ^



cfbb8c84 ^


61de0a4d ^



9f186528 ^


61de0a4d ^



9f186528 ^


61de0a4d ^



9f186528 ^


61de0a4d ^


9f186528 ^


61de0a4d ^

9f186528 ^


61de0a4d ^

9f186528 ^


61de0a4d ^

9f186528 ^


61de0a4d ^



9f186528 ^


61de0a4d ^



9f186528 ^


61de0a4d ^

51a54027 ^

cfbb8c84 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155

         
                                                  
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                          


                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                          
   
                                                
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                          
   
                                                           
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                          
   
                                               
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                         
   
                                               
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                          
   
                                                        
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                      
   
                                              
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                          
   


                                                             
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                 
   
                                                    
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                  
   
                                                       
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                 
   
                                             
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
                  
   

                                                         


                                                             


                                     



                                                             


                                     



                                                             


                                     


                                                          


                                     



                                                          


                                     



                                                             


                                     



                                                             


                                     



                                                             


                                     



                                                             


                                     


                                                             


                                     

                                                             


                                     

                                                             


                                     

                                                             


                                     



                                                             


                                     



                                                          


                                     

                                      

                                      
   
a>
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337