Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | added missing devnull variable definition, fixes last commit | hut | 2011-03-02 | 1 | -0/+1 |
| | |||||
* | cleanups | hut | 2011-03-02 | 2 | -4/+4 |
| | |||||
* | fixed issue with py3.2 when opening files w/ mplayer | hut | 2011-03-02 | 1 | -1/+1 |
| | | | | | it didn't accept open('/dev/null', 'a') as STDIN for subprocess.Popen and threw a [Errno 9] Bad file descriptor. Which makes... sense. | ||||
* | Fixed debug code in core.runner | hut | 2011-02-26 | 1 | -2/+3 |
| | |||||
* | defaults.commands: include bookmarks in tab completion of :cd | hut | 2011-02-18 | 2 | -1/+52 |
| | | | | Idea stolen from the jumanji browser. Let's see how well this works. | ||||
* | fsobject.directory: added dirname argument to accept_file | hut | 2011-02-18 | 1 | -3/+3 |
| | | | | | | | | | | | | | this is to enable customized file hiding functions. eg: import ranger.fsobject.directory def accept_file(fname, dirname, hidden_filter, name_filter): if <file should be hidden>: return False return True ranger.fsobject.directory.accept_file = accept_file this in options.py or something | ||||
* | data/scope.sh: support for highlight 3.3 | hut | 2011-02-17 | 1 | -1/+1 |
| | |||||
* | data.scope: Applied Yubao's patch | hut | 2011-02-15 | 1 | -4/+5 |
| | |||||
* | Added --choosedir, a more logical alternative to --fail-unless-cd | hut | 2011-02-15 | 4 | -5/+13 |
| | | | | also updated the bash script in README to use the new option | ||||
* | help.invocation: typo | hut | 2011-02-15 | 1 | -1/+1 |
| | |||||
* | Moved vimscript to README next to the bash script :) | hut | 2011-02-15 | 2 | -18/+28 |
| | |||||
* | Improved --choosefile vimscript in documentation | hut | 2011-02-15 | 1 | -2/+4 |
| | |||||
* | Added --choosefile + doc to replace ornivar's RANGER_RETURN_FILE | hut | 2011-02-14 | 3 | -3/+24 |
| | | | | | I recommended environment variables to ornivar because its easier for a quick hack but I wouldn't like to have it in the codebase quite like this. | ||||
* | python 2.6 compatibility for ornicars commits | hut | 2011-02-14 | 1 | -2/+1 |
| | |||||
* | Remove useless import | ornicar | 2011-02-13 | 1 | -1/+0 |
| | |||||
* | [vim integration] the temp file is now passed through RANGER_RETURN_FILE | ornicar | 2011-02-13 | 1 | -3/+3 |
| | |||||
* | [vim integration] When INVIM env var is set, write filename to tempfile and exit | ornicar | 2011-02-13 | 1 | -0/+7 |
| | |||||
* | Merge branch 'stable' | hut | 2011-01-06 | 7 | -6/+29 |
|\ | |||||
| * | If ranger won't run, you still got peanut butter to live for. v1.4.1 | hut | 2011-01-04 | 4 | -3/+7 |
| | | |||||
| * | Moved HACKING and TODO to doc/ | hut | 2011-01-04 | 2 | -0/+0 |
| | | |||||
| * | Extended help/index.py | hut | 2011-01-04 | 1 | -3/+22 |
| | | |||||
* | | Merge branch 'stable' | hut | 2011-01-04 | 2 | -7/+14 |
|\| | |||||
| * | Added some programs to defaults/apps.py | hut | 2011-01-04 | 1 | -5/+9 |
| | | |||||
| * | widgets.pager: Fixed crash when scope.sh fails | hut | 2011-01-04 | 1 | -2/+5 |
| | | |||||
* | | Attempted to fix some utf issues | hut | 2010-12-26 | 4 | -6/+294 |
|/ | |||||
* | gui.widgets.browserview: Fixed problem with inspect (key i) | hut | 2010-12-25 | 1 | -1/+1 |
| | | | | | When previews are on and you're pressing i, the old preview remains there for a while, making ranger show two previews at once. | ||||
* | We are not authorized to disclose the commit message v1.4.0 | hut | 2010-12-22 | 4 | -6/+23 |
| | |||||
* | help.index: added additional information | hut | 2010-12-22 | 1 | -0/+1 |
| | |||||
* | help: added missing dots | hut | 2010-12-22 | 2 | -2/+2 |
| | |||||
* | help.movement: Added documentation for scope.sh | hut | 2010-12-22 | 1 | -0/+22 |
| | |||||
* | updated doc/colorschemes.txt | hut | 2010-12-22 | 1 | -15/+6 |
| | |||||
* | core.actions: Fixed colors in help | hut | 2010-12-22 | 1 | -1/+1 |
| | |||||
* | widgets.browserview: Cleaner solution for commit 3fd5f5caf6 | hut | 2010-12-22 | 2 | -2/+8 |
| | |||||
* | Merge branch 'stable' | hut | 2010-12-22 | 1 | -8/+23 |
|\ | | | | | | | | | | | | | | | | | | | Conflicts: README doc/ranger.1 ranger/__init__.py ranger/core/environment.py ranger/core/helper.py ranger/fsobject/fsobject.py | ||||
| * | HOW DO I TURN OFF CAPS LOCK? v1.2.3 | hut | 2010-12-13 | 4 | -3/+10 |
| | | |||||
| * | updated README | hut | 2010-12-13 | 1 | -3/+6 |
| | | |||||
| * | ext.signals: fixed memory leak | hut | 2010-11-22 | 2 | -6/+22 |
| | | | | | | | | | | | | | | Signal handlers with dead weak references are only cleaned up when using signal_emit. If no signals are emitted, dead signal handlers will accumulate. This is avoided by adding the function signal_garbage_collect() and calling it in env.garbage_collect() | ||||
| * | ext.signal_dispatcher: optimization of signal_emit | hut | 2010-11-22 | 1 | -6/+6 |
| | | |||||
| * | fsobject: The lazy lookup of .image attribute was *too* lazy | hut | 2010-11-22 | 1 | -0/+4 |
| | | | | | | | | | | | | Conflicts: ranger/fsobject/fsobject.py | ||||
| * | widgets.statusbar: Fixed crash after deleting current file | hut | 2010-11-22 | 1 | -1/+4 |
| | | |||||
| * | widgets.statusbar: Reload permissions of current file on change | hut | 2010-11-22 | 1 | -2/+3 |
| | | |||||
| * | fsobject.fsobject: Use ctime, not mtime, for identifying changes | hut | 2010-11-22 | 2 | -9/+10 |
| | | |||||
| * | fsobject.directory: Fixed sorting by type | hut | 2010-11-22 | 1 | -1/+1 |
| | | |||||
| * | ext.keybinding_parser: fixed python3 incompatibility | hut | 2010-11-22 | 1 | -1/+1 |
| | | |||||
| * | ext.keybinding_parser: allow mapping alt+special keys | hut | 2010-11-22 | 1 | -4/+12 |
| | | |||||
| * | Tea, Earl Grey, Hot. v1.2.2 | hut | 2010-10-10 | 4 | -11/+19 |
| | | |||||
| * | defaults.keys: show bookmarks when typing "um" | hut | 2010-10-10 | 1 | -1/+2 |
| | | |||||
| * | defaults.commands: Fixed :cd command without argument | hut | 2010-10-10 | 1 | -3/+2 |
| | | |||||
| * | gui.color: fixed ranger.gui.color.remove_attr | hut | 2010-10-10 | 1 | -1/+1 |
| | | |||||
| * | api.commands, api.keys: added dummies that allow pydoc to be generated | hut | 2010-10-10 | 2 | -0/+13 |
| | |