Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Switch image displayers based on preferences | Delisa Mason | 2015-03-08 | 1 | -2/+10 |
| | |||||
* | Scale iTerm2 image previews to fit within “best guess” dimensions | Delisa Mason | 2015-03-08 | 1 | -7/+78 |
| | | | | * Assume a character size of 8x11 as a good average which should fit most scenarios | ||||
* | Create image displayer impls for w3m, iterm2 | Delisa Mason | 2015-03-08 | 1 | -11/+63 |
| | |||||
* | Add configuration options for image preview modes | Delisa Mason | 2015-03-08 | 2 | -1/+11 |
| | |||||
* | core.actions: create multi-level directories with :mkdir | hut | 2015-03-05 | 1 | -1/+1 |
| | | | | Thanks to @randynobx for suggesting it. See Github issue #238. | ||||
* | add setting for sorting by unicode character | hut | 2015-03-03 | 3 | -0/+21 |
| | |||||
* | config/commands.py: add comment | hut | 2015-02-18 | 1 | -0/+5 |
| | |||||
* | core.main: avoid creating ~/.config/ranger/commands.pyc | hut | 2015-02-17 | 1 | -0/+3 |
| | | | | This fixes #248 (Cached python should not be stored in .config) | ||||
* | config/commands_sample.py: return on error | hut | 2015-02-17 | 1 | -0/+1 |
| | |||||
* | core.fm: more sane --copy-config of commands.py | hut | 2015-02-17 | 2 | -3/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | This commit makes ranger only copy a small sample commands.py to ~/.config/ranger/commands.py when running --copy-config=commands. The default commands.py will be copied to commands_full.py instead, a file that will not be loaded at all, and will only serve as a reference. It can be obtained with --copy-config=commands_full This will avoid that the average user's commands.py will break ranger whenever she's updating ranger after using --copy-config=all. It's necessary because commands.py contains much of the actual program logic, but it can't be kept compatible like other configuration files, and the user can't be expected to always keep an up-to-date version of it. Overview: Removed --copy-config rule: --copy-config=commands: commands.py -> commands.py New --copy-config rules: --copy-config=commands: commands_sample.py -> commands.py --copy-config=commands_full: commands.py -> commands_full.py | ||||
* | config/commands_sample.py: added comments | hut | 2015-02-17 | 1 | -2/+6 |
| | |||||
* | config/commands_sample.py: better docstring | hut | 2015-02-17 | 1 | -1/+1 |
| | |||||
* | added a sample commands.py | hut | 2015-02-17 | 1 | -0/+53 |
| | |||||
* | core.fm: typo | hut | 2015-02-17 | 1 | -1/+1 |
| | |||||
* | Merge branch 'delete_previewed_file_fix' of https://github.com/Vifon/ranger | hut | 2015-02-17 | 1 | -1/+1 |
|\ | |||||
| * | core.actions: deleting a file with a cached image preview no longer crashes ↵ | Wojciech Siewierski | 2015-02-12 | 1 | -1/+1 |
| | | | | | | | | ranger | ||||
* | | config/commands: interactive "?" key / ":help" command | hut | 2015-02-16 | 1 | -8/+14 |
|/ | |||||
* | Fix renaming with insufficient privileges | Alexander Buddenbrock | 2015-02-12 | 2 | -4/+6 |
| | | | | | | | | | | | Closes #97 When renaming a file, the internal file pointer will be set to the new file name without checking if the file actually got renamed. This would cause the file pointer to be set to an invalid file if renaming failed because of bad privileges. With no valid file, the previev window will disappear. This patch adds a return value to the core renaming method so it can be checking by the caller. The rename command now checks if the rename succeeded and only then sets the new file pointer. | ||||
* | fix python version checking with python2.6 | hut | 2015-02-10 | 6 | -7/+7 |
| | |||||
* | core.fm: give clearer instructions on --copy-config | hut | 2015-02-09 | 1 | -3/+9 |
| | |||||
* | proper checking for the python version | hut | 2015-02-08 | 6 | -7/+7 |
| | | | | | Let's not force python to jump from version 9 straight to 31, just because some silly software did fuzzy version checks :D | ||||
* | core.loader: fix copy&pasting directory links | hut | 2015-02-07 | 1 | -1/+1 |
| | |||||
* | Merge branch 'patch-1' of https://github.com/bastorran/ranger | hut | 2015-02-07 | 1 | -0/+1 |
|\ | |||||
| * | remove double dash | bastorran | 2015-02-06 | 1 | -1/+1 |
| | | |||||
| * | Add qpdfview to rifle.conf | bastorran | 2015-02-06 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | Hello, there is a less known pdf viewer, called qpdfview. Greetings bastorran | ||||
* | | ext.shutil_generatorized: don't follow links in copystat | hut | 2015-02-06 | 1 | -1/+1 |
| | | | | | | | | | | | | This avoids error messages when copying broken links, and seems like a sane setting overall. Especially considering that ranger has no option to follow links when copying. | ||||
* | | ext.shutil_generatorized: fixed #143 (copying of links) | hut | 2015-02-06 | 1 | -5/+6 |
| | | | | | | | | This bug was introduced in a986e2bd... | ||||
* | | core.loader: don't follow links when calculating size | hut | 2015-02-06 | 1 | -0/+2 |
|/ | |||||
* | Merge branch 'tab_switch_realpath' of https://github.com/Vifon/ranger | hut | 2015-02-06 | 1 | -0/+1 |
|\ | |||||
| * | core.actions: tab_switch uses realpath | Wojciech Siewierski | 2015-02-01 | 1 | -0/+1 |
| | | | | | | | | | | This way the different representation of the same path are treated in the same way. | ||||
* | | config.commands: bulkrename works with `:flat -1` | Wojciech Siewierski | 2015-02-02 | 1 | -1/+3 |
|/ | | | | Fixes #241. | ||||
* | Less invasive default parameter. | The Flying Rapist | 2015-01-30 | 1 | -1/+1 |
| | |||||
* | Added tab_switch fm action. | The Flying Rapist | 2015-01-30 | 1 | -0/+42 |
| | |||||
* | container.directory: added sorting by file extension | Wojciech Siewierski | 2015-01-29 | 2 | -0/+3 |
| | |||||
* | config.commands: added ability to create multilevel directories (as mkdir -p ↵ | Nikolay Puzanov | 2015-01-28 | 1 | -2/+2 |
| | | | | 1/2/3) | ||||
* | core.fm: Call default rifle.hook_command_preprocessing | hut | 2015-01-20 | 1 | -1/+2 |
| | |||||
* | core.actions: fix linemode validity check | hut | 2015-01-18 | 1 | -2/+4 |
| | |||||
* | gui.widgets.browsercolumn: Set default value for text | hut | 2015-01-18 | 1 | -0/+1 |
| | | | | this can avoid crashes | ||||
* | Merge branch 'patch-1' of https://github.com/HerrNieschnell/ranger | hut | 2015-01-18 | 1 | -2/+2 |
|\ | |||||
| * | Priority change | HerrNieschnell | 2015-01-18 | 1 | -2/+2 |
| | | | | | | | | | | I think if someone has sxiv, feh or mirage installed, it should have a higher priority than eog or eom, because they are normally automatically installed along with mate or gnome. it fits the philosophy of browser or documents default priority. | ||||
* | | core.fm: rearranged loading order of tags | hut | 2015-01-18 | 1 | -3/+3 |
|/ | | | | | This avoids crashing on startup if there's a bookmarked file that is tagged to a tag which is used in ":default_linemode tag=X ..." | ||||
* | Merge branch 'remove_empty_metadata' of https://github.com/Vifon/ranger | hut | 2015-01-18 | 1 | -0/+10 |
|\ | |||||
| * | core.metadata: data of files with empty metadata is not stored | Wojciech Siewierski | 2015-01-17 | 1 | -0/+10 |
| | | |||||
* | | :meta may be used on multiple selected files | Wojciech Siewierski | 2015-01-17 | 1 | -1/+3 |
|/ | |||||
* | core.metadata: added another TODO entry | hut | 2015-01-17 | 1 | -0/+1 |
| | |||||
* | Merge branch 'cd-select_file' of https://github.com/NoSuck/ranger into ↵ | hut | 2015-01-17 | 1 | -1/+2 |
|\ | | | | | | | cd-select_file | ||||
| * | Modified cd command to select original file, when following links. | The Flying Rapist | 2015-01-13 | 1 | -1/+2 |
| | | |||||
* | | container.directory: don't crash get_selection if files is None | hut | 2015-01-17 | 1 | -0/+2 |
| | | |||||
* | | core.metadata: add some TODO entries | hut | 2015-01-17 | 1 | -0/+3 |
| | | |||||
* | | Merge branch 'metadata' | hut | 2015-01-17 | 10 | -256/+215 |
|\ \ |