Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Write "ranger" with a lowercase "r" | hut | 2011-10-08 | 7 | -10/+10 |
| | |||||
* | defaults/options: disable use_preview_script, unicode_ellipsis | hut | 2011-10-08 | 1 | -2/+2 |
| | |||||
* | data/config_examples/rc.conf: Fixed bad command | hut | 2011-10-08 | 1 | -2/+2 |
| | |||||
* | data/config_examples/rc.conf: Added extra hashes in comments | hut | 2011-10-08 | 1 | -9/+9 |
| | |||||
* | data/config_examples/rc.conf: Typo | hut | 2011-10-08 | 1 | -1/+1 |
| | |||||
* | data/config_examples/apps.py: Typo | hut | 2011-10-08 | 1 | -1/+1 |
| | |||||
* | defaults/apps: fixed entry for feh | hut | 2011-10-08 | 1 | -1/+1 |
| | |||||
* | README: Updated dependencies | hut | 2011-10-08 | 1 | -4/+4 |
| | |||||
* | config_examples: updated doc | hut | 2011-10-08 | 2 | -13/+16 |
| | |||||
* | data/config_examples: added documentation | hut | 2011-10-08 | 2 | -7/+82 |
| | |||||
* | defaults/apps: Removed example code, its now in config_examples/ | hut | 2011-10-08 | 1 | -28/+0 |
| | |||||
* | defaults/apps: moved file chooser code to Actions.execute_file | hut | 2011-10-08 | 2 | -5/+5 |
| | |||||
* | README: Update | hut | 2011-10-08 | 1 | -21/+22 |
| | |||||
* | updated manpage and config_examples/rc.conf | hut | 2011-10-08 | 3 | -2/+22 |
| | |||||
* | data/config_examples/rc.conf: written | hut | 2011-10-08 | 1 | -0/+39 |
| | |||||
* | core.main: Automatically copy config files | hut | 2011-10-08 | 4 | -30/+27 |
| | | | | This removes --copy-config=X and adds --dont-copy-config. | ||||
* | added data/config_examples/{apps,commands}.py | hut | 2011-10-08 | 2 | -0/+135 |
| | |||||
* | general updates | hut | 2011-10-08 | 9 | -69/+142 |
| | |||||
* | config_examples/options.py: added | hut | 2011-10-08 | 1 | -0/+32 |
| | |||||
* | defaults.commands: Dynamically choose editor in :bulkrename | hut | 2011-10-08 | 1 | -3/+4 |
| | |||||
* | core.action: removed debugging code from dump_keybindings | hut | 2011-10-08 | 1 | -4/+1 |
| | |||||
* | defaults.commands: modified :help to make use of quantifiers | hut | 2011-10-08 | 2 | -2/+9 |
| | |||||
* | core.actions: added dump_settings and dump_commands | hut | 2011-10-08 | 2 | -26/+60 |
| | |||||
* | core.actions: added dump_keybindings() | hut | 2011-10-08 | 1 | -1/+36 |
| | |||||
* | ext.keybinding_parser: added <INSERT> | hut | 2011-10-08 | 1 | -0/+1 |
| | |||||
* | defaults/apps: Added mplayer2 | hut | 2011-10-08 | 1 | -1/+8 |
| | |||||
* | gui.ansi: Added doctest | hut | 2011-10-08 | 1 | -3/+34 |
| | |||||
* | ext.signals: fixed signals for python3.2 | hut | 2011-10-08 | 1 | -4/+4 |
| | |||||
* | ext.iter_tools: Added doctest | hut | 2011-10-08 | 1 | -0/+15 |
| | |||||
* | Makefile: Fixed doctests for python3.2 | hut | 2011-10-08 | 1 | -1/+1 |
| | |||||
* | ext.direction: Added doctest | hut | 2011-10-07 | 1 | -13/+25 |
| | |||||
* | ext.lazy_property: added doctest | hut | 2011-10-07 | 1 | -6/+15 |
| | |||||
* | ext.signals: Fixed hidden bugs, added doctests | hut | 2011-10-07 | 1 | -15/+175 |
| | |||||
* | Makefile: added `make test' back in. | hut | 2011-10-07 | 1 | -1/+9 |
| | |||||
* | moved DELETE_WARNING constant from api to api.commands | hut | 2011-10-07 | 2 | -2/+2 |
| | |||||
* | core.actions: Fixed crash when %f/%F macros are undefined | hut | 2011-10-07 | 1 | -6/+30 |
| | |||||
* | widgets.browserview: Try to fix crash | hut | 2011-10-07 | 1 | -0/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When running ranger with two directories and using a command with macros, this crash happens. To reproduce, run this and then type "yp" ranger /usr/bin /var/tmp Traceback was: Ranger version: 1.5.0, executed with python 3.2.2 Locale: en_US.UTF-8 Current file: /usr/lib Traceback (most recent call last): File "/home/common/archive/repos/ranger/ranger/core/main.py", line 103, in main fm.loop() File "/home/common/archive/repos/ranger/ranger/core/fm.py", line 202, in loop ui.handle_input() File "/home/common/archive/repos/ranger/ranger/gui/ui.py", line 210, in handle_input self.handle_key(key) File "/home/common/archive/repos/ranger/ranger/gui/ui.py", line 146, in handle_key self.press(key) File "/home/common/archive/repos/ranger/ranger/gui/ui.py", line 161, in press quantifier=keybuffer.quantifier) File "/home/common/archive/repos/ranger/ranger/core/actions.py", line 111, in execute_console string = self.substitute_macros(string, additional=macros) File "/home/common/archive/repos/ranger/ranger/core/actions.py", line 115, in substitute_macros return _MacroTemplate(string).safe_substitute(self._get_macros(), File "/home/common/archive/repos/ranger/ranger/core/actions.py", line 153, in _get_macros macros[i + 'f'] = shell_quote(tab_dir.pointed_obj.path) AttributeError: 'NoneType' object has no attribute 'path' | ||||
* | merged ext.keybindings.py into ext.keybindings_parser.py | hut | 2011-10-07 | 3 | -200/+176 |
| | |||||
* | defaults/options: default sorting method is now "natural" | hut | 2011-10-07 | 1 | -1/+1 |
| | |||||
* | api.apps: fix bug with undefined apps | hut | 2011-10-05 | 1 | -1/+1 |
| | |||||
* | core.runner: print more debug output | hut | 2011-10-05 | 1 | -1/+1 |
| | |||||
* | manpage: update | hut | 2011-10-05 | 2 | -32/+34 |
| | |||||
* | Makefile: update | hut | 2011-10-05 | 1 | -4/+8 |
| | |||||
* | removed doc/TODO; use "make todo" | hut | 2011-10-05 | 6 | -118/+8 |
| | |||||
* | README: polished, removed INSTALL | hut | 2011-10-05 | 3 | -76/+46 |
| | |||||
* | defaults/commands: added cunmap, punmap, tunmap | hut | 2011-10-05 | 3 | -5/+97 |
| | |||||
* | gui.ui: Add "loading..." indicator on startup | hut | 2011-10-05 | 1 | -0/+2 |
| | |||||
* | Makefile: added "make todo" and added some notes in code | hut | 2011-10-05 | 3 | -1/+6 |
| | |||||
* | widgets.console: Fixed drawing of wide characters | hut | 2011-10-05 | 1 | -7/+4 |
| | |||||
* | widgets.console: fixed crash when typing special keys | hut | 2011-10-05 | 1 | -1/+3 |
| |