diff options
author | hut <hut@lavabit.com> | 2011-10-01 23:29:47 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2011-10-01 23:29:47 +0200 |
commit | 95a35bffceb14827d63d210211e6be654871c51e (patch) | |
tree | 5b57c5a0766dcc4bd8fc72d8ef6c77e63213fe77 | |
parent | 03d7f28e1e73a61e4d3524eec26bbab441295fdf (diff) | |
download | ranger-95a35bffceb14827d63d210211e6be654871c51e.tar.gz |
defaults/commands: removed "console!" and fixed "chmod" command
-rw-r--r-- | ranger/defaults/commands.py | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/ranger/defaults/commands.py b/ranger/defaults/commands.py index 0acfaa82..a909cee9 100644 --- a/ranger/defaults/commands.py +++ b/ranger/defaults/commands.py @@ -62,7 +62,6 @@ from ranger.core.runner import ALLOWED_FLAGS alias('e', 'edit') alias('q', 'quit') alias('q!', 'quitall') -alias('console!', 'console_bang') alias('qall', 'quitall') class cd(Command): @@ -526,16 +525,6 @@ class console(Command): self.fm.open_console(self.rest(1), position=position) -class console_bang(Command): - """ - :console! <command> - - Execute the given command in the console. - """ - def execute(self): - self.fm.execute_console(self.rest(1)) - - class load_copy_buffer(Command): """ :load_copy_buffer @@ -730,8 +719,9 @@ class chmod(Command): """ def execute(self): - line = parse(self.line) - mode = line.rest(1) + mode = self.rest(1) + if not mode: + mode = str(self.quantifier) try: mode = int(mode, 8) |