summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--ranger/defaults/keys.py14
1 files changed, 5 insertions, 9 deletions
diff --git a/ranger/defaults/keys.py b/ranger/defaults/keys.py
index 14ecef54..07591691 100644
--- a/ranger/defaults/keys.py
+++ b/ranger/defaults/keys.py
@@ -196,23 +196,19 @@ map('ud', 'uy', fm.uncut())
 # ------------------------------------ changing of file permissions
 # type "+ow" for "chmod o+w %s" and so on
 from itertools import product
-octal_help    = 'Enter the octal mode number for chmod'
-symbolic_help = '%s %s to *r*ead, *w*rite, e*x*ecute'
 for mode in product('ugoa', 'rwxXst'):
 	map('-%s%s' % mode, fm.execute_console('shell chmod %s-%s %%s' % mode))
 	map('+%s%s' % mode, fm.execute_console('shell chmod %s+%s %%s' % mode))
-for n in product(range(8), range(8), range(8)):
-	map('=%d%d%d' % n, fm.execute_console('shell chmod %d%d%d %%s' % n))
-	map('=%d<bg>'   %  n[0],        fm.hint(octal_help))
-	map('=%d%d<bg>' % (n[0], n[1]), fm.hint(octal_help))
+	map('=%s%s' % mode, fm.execute_console('shell chmod %s+%s %%s' % mode))
 
 # hints:
+template = '%s %s to *r*ead, *w*rite, e*x*ecute'
 for who, name in zip('ugoa', ('user', 'group', 'others', 'all')):
-	map('-%s<bg>' % who, fm.hint(symbolic_help % ('forbid', name)))
-	map('+%s<bg>' % who, fm.hint(symbolic_help % ('allow', name)))
+	map('-%s<bg>' % who, fm.hint(template % ('forbid', name)))
+	map('+%s<bg>' % who, fm.hint(template % ('allow', name)))
+	map('=%s<bg>' % who, fm.hint(template % ('allow', name)))
 map('-<bg>', '+<bg>', '=<bg>', fm.hint('change permission for *u*ser, '
 	'*g*roup, *o*thers, *a*ll'))
-map('=<bg>', fm.hint(octal_help))
 
 # ---------------------------------------------------- run programs
 map('S', fm.execute_command(os.environ['SHELL']))
19-05-03 10:26:48 +0200 committer Michael Vetter <jubalh@iodoru.org> 2019-05-03 10:26:48 +0200 Replace profanity URL in README' href='/danisanti/profani-tty/commit/README.md?id=187a2a07cd0bc642ec125b6177a91bbff5ca8f41'>187a2a07 ^
5709f5a2 ^
d0dfe530 ^


d240eb62 ^

d0dfe530 ^


65e90dba ^













30c02e26 ^

65e90dba ^





fc93546b ^
65e90dba ^



d240eb62 ^
65e90dba ^
a1d37dda ^
5709f5a2 ^
65e90dba ^

2db1118f ^
65e90dba ^
4484c2b0 ^
65e90dba ^

2db1118f ^
65e90dba ^
63b996a3 ^
65e90dba ^
00fc0e2e ^
2db1118f ^
65e90dba ^
447d19aa ^

65e90dba ^
d4892b29 ^
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