Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | api.commands: improved tab-completion of :rename and others | hut | 2013-10-25 | 1 | -7/+26 |
| | | | | | | The list of items that you tab through is now constrained to non-hidden files and the order is the same as visible on the screen - starting from the current file. | ||||
* | Update vim_file_chooser.vim | Israel Chauca Fuentes | 2013-09-17 | 1 | -11/+27 |
| | | | | | Allow choosing multiple files. Add ex command :RangerChooser. Use the value of mapleader for the keybinding. | ||||
* | config/rc.conf: added :qa -> :quitall alias | hut | 2013-08-29 | 1 | -0/+1 |
| | |||||
* | ext.keybinding_parser: interpret keys like <383> | hut | 2013-08-20 | 1 | -4/+7 |
| | | | | | | | | sometimes ranger's keybinding parser doesn't support whatever key you want to use. In that case, it would be useful to be able to specify keys by their curses key code that can be taken from tools like /doc/tools/print_keys.py. <383> would then be interpreted as <S-DELETE>, for example. | ||||
* | ext.keybinding_parser: added key <S-DELETE> | hut | 2013-08-20 | 1 | -0/+1 |
| | |||||
* | core.actions: add numerical argument to toggle_visual_mode | hut | 2013-08-17 | 1 | -1/+3 |
| | |||||
* | core.actions: better numerical argument to "mark_files" | hut | 2013-08-17 | 1 | -1/+6 |
| | |||||
* | ext.direction: fix off-by-one error in select() | hut | 2013-08-17 | 1 | -1/+1 |
| | |||||
* | config/rc.conf: make :find case-insensitive | hut | 2013-08-17 | 1 | -1/+1 |
| | | | | | | The man page describes :find as case-insensitive. It was also like this before the implementation of the :scout command. So let's change it back until someone complains. | ||||
* | Changed email address in source code | hut | 2013-08-08 | 60 | -61/+61 |
| | | | | | Since lavabit.com ceased providing email services, I had to change my address from hut lavabit com to hut lepus uberspace de. | ||||
* | Merge branch 'efficient_w3mimgpreview' | hut | 2013-07-28 | 5 | -86/+109 |
|\ | |||||
| * | core.fm: draw images later | hut | 2013-04-24 | 3 | -2/+8 |
| | | |||||
| * | ext.img_display: more efficient way to draw images | hut | 2013-04-24 | 3 | -84/+101 |
| | | | | | | | | | | | | | | | | Instead of loading up w3mimgdisplay for each image and killing it afterwards, we just open it once for the first image and keep it open. It can receive any number of commands, so we can just keep writing them into stdin. Perhaps it even caches the images to save time, I didn't test that yet. | ||||
* | | doc/HACKING: updated | hut | 2013-06-24 | 1 | -10/+8 |
| | | | | | | | | Based on a patch by Niku. | ||||
* | | config/commands.py: typo | hut | 2013-06-21 | 1 | -1/+1 |
| | | | | | | | | Thanks to niku for the patch. | ||||
* | | rebuilt man pages with new pod2man version | hut | 2013-06-21 | 2 | -28/+46 |
| | | |||||
* | | ranger.1: mention that some commands are based on :scout | hut | 2013-06-21 | 2 | -0/+28 |
| | | |||||
* | | ranger.1: more exhaustive documentation for :open_with | hut | 2013-06-21 | 2 | -4/+14 |
| | | |||||
* | | data/scope.sh: fix extension matching on uppercase extension | hut | 2013-06-16 | 1 | -1/+1 |
| | | | | | | | | Thanks to niku for the patch. | ||||
* | | scope.sh: typo | hut | 2013-06-16 | 1 | -1/+1 |
| | | | | | | | | Thanks to niku for the patch. | ||||
* | | commands.py: typos | hut | 2013-06-16 | 1 | -4/+4 |
| | | | | | | | | Thanks to niku for the patch. | ||||
* | | container.file: typo | hut | 2013-06-11 | 1 | -1/+1 |
| | | |||||
* | | doc/colorschemes.txt: update | hut | 2013-06-10 | 1 | -3/+3 |
| | | |||||
* | | core.fm: fix shell escaping when using feh + "open_all_images" | hut | 2013-06-07 | 1 | -1/+1 |
| | | |||||
* | | config/rc.conf: added ^L keys for pager and taskview | hut | 2013-06-07 | 1 | -0/+2 |
| | | |||||
* | | Change name back to "ranger-master" in --version output | hut | 2013-05-24 | 1 | -1/+1 |
| | | |||||
* | | RANGER! RANGER! HIGH VOLTAGE! v1.6.1 | hut | 2013-05-24 | 6 | -6/+14 |
| | | |||||
* | | core.actions: update preview when changing file in pager | hut | 2013-05-01 | 1 | -0/+3 |
| | | |||||
* | | doc/ranger.1: put a list of resources at the top | hut | 2013-04-30 | 2 | -25/+41 |
|/ | |||||
* | core.actions: reduce code dupliaction | hut | 2013-04-24 | 2 | -12/+9 |
| | |||||
* | core.actions: pressing "i" opens ui.pager, not ui.browser.pager | hut | 2013-04-24 | 2 | -3/+11 |
| | | | | | | | ui.pager makes use of the whole width, ui.browser.pager "pushes" the main column away to the left. The former seems more efficient to me for the "i" key. | ||||
* | core.action: make pager_move work in log too (key W) | hut | 2013-04-24 | 1 | -1/+4 |
| | |||||
* | container.settings: fix "setintag" with certain settings | hut | 2013-04-21 | 1 | -8/+12 |
| | | | | | | | | | | | | | | To reproduce the bug: 1. type ":setintag * sort ctime" into the console 2. ensure that the directory ~ is untagged and ~/dl is tagged with "*" 3. change directory to ~/dl/ 4. press ^R The result is that ~ is sorted by ctime even though it shouldn't be. this is because it uses the settings of fm.thisdir rather than it own settings. This commit fixes this bug | ||||
* | container.tags: added TODO entry | hut | 2013-04-20 | 1 | -0/+2 |
| | |||||
* | config/commands: implemented :setintag <tags> <option>=<value> | hut | 2013-04-20 | 3 | -7/+32 |
| | |||||
* | Fix plugin names in log view | Emanuel Guevel | 2013-04-13 | 1 | -1/+1 |
| | |||||
* | core.fm: disable garbage collecting old directories | hut | 2013-04-12 | 1 | -4/+4 |
| | | | | it was kind of broken too | ||||
* | ext.vcs.vcs: use more traditional syntax in dict expression | hut | 2013-04-08 | 1 | -1/+1 |
| | |||||
* | core.fm: only apply open_all_files to cmds with $@ | hut | 2013-04-07 | 1 | -1/+2 |
| | |||||
* | Revert "Added bumblebee-like "make uninstall"" | hut | 2013-04-02 | 1 | -7/+0 |
| | | | | This reverts commit f19c589432c68ae1979adb723deb3665d38c0b4a. | ||||
* | Added bumblebee-like "make uninstall" | hut | 2013-04-01 | 1 | -0/+7 |
| | | | | | | | | | | | This innovative uninstalling method unlocks the power and immense efficiency that resulted from years of dedicated R&D by the greatest minds to ever walk the face of the earth. By now, this method is state-of-the-art after being tested by prestigious software such as bumblebee [1], marking a milestone and becoming a true legend in the history of open source development. [1] https://github.com/MrMEEE/bumblebee-Old-and-abbandoned/commit/a047be85247755cdbe0acce6f1dafc8beb84f2ac | ||||
* | ext.img_display: allow using W3MIMGDISPLAY_PATH env var | hut | 2013-03-24 | 3 | -3/+15 |
| | | | | in response to https://savannah.nongnu.org/bugs/?38582 | ||||
* | Fix Issue #80 that crashed ranger when resized too small | Abdo Roig-Maranges | 2013-03-24 | 1 | -21/+27 |
| | | | | | This fixes Issue #80 and cleans up the code a bit so this particular fragment is more readable. | ||||
* | container.directory: fix pointer in refilter, not in sort | hut | 2013-03-24 | 1 | -6/+2 |
| | |||||
* | container.directory: move refilter() to the right place | hut | 2013-03-24 | 1 | -2/+2 |
| | |||||
* | fix missing quotes in shell macros | Abdo Roig-Maranges | 2013-03-21 | 1 | -1/+1 |
| | |||||
* | widgets.browserview: resize when toggling draw_borders | hut | 2013-03-17 | 1 | -0/+6 |
| | |||||
* | gui.ui: remove curses.setupterm() instruction | hut | 2013-03-17 | 1 | -1/+0 |
| | | | | | | | | | | | | it was added in commit b34807bd428bbe7bb40e8798af17f0f4cf5ecf1f ("gui.ui: more portable terminal title support") and I don't know why anymore. It seems to work perfectly without it. Keeping it seems to cause broken terminals on some systems though. see also: http://bugs.python.org/issue7567 http://lists.nongnu.org/archive/html/ranger-users/2013-03/msg00046.html | ||||
* | update examples (s/ranger.fsobject/ranger.container/) | hut | 2013-03-17 | 2 | -5/+5 |
| | |||||
* | settings: sanitize in separate signal with higher priority | hut | 2013-03-16 | 1 | -12/+11 |
| | | | | | | Some signals may require the sanitized value BEFORE it is actually set with settings._raw_set. We need to separate sanitizing and _raw_set into separate signals so other signals can be bound in between those two. |