Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | core.environment: deleted module, it was obsolete | hut | 2015-04-14 | 3 | -121/+2 |
| | |||||
* | core.linemode: fix python3 crash in FileInfoLinemode | hut | 2015-04-13 | 1 | -0/+3 |
| | |||||
* | container.tags: added TagsDummy class for use with --clean | hut | 2015-04-13 | 1 | -1/+3 |
| | |||||
* | core.actions: update execute_file() docstring | hut | 2015-04-13 | 1 | -6/+10 |
| | |||||
* | added tag management for rename, delete, bulkrename, and moving of files | randnobx | 2015-04-11 | 1 | -0/+7 |
| | | | | | | | | fixed typo in rename added recursive checking to move, rename, and delete; refactored previos code bugfix: moved recursive tag checking for delete to commands.py | ||||
* | added "%space" macro that expands to " ", use it in rc.conf | hut | 2015-04-10 | 1 | -0/+1 |
| | |||||
* | new linemode with the information from file(1) | Wojciech Siewierski | 2015-03-30 | 1 | -0/+15 |
| | |||||
* | core.linemode: updated a docstring | Wojciech Siewierski | 2015-03-23 | 1 | -2/+3 |
| | |||||
* | core.actions: added TODO message | hut | 2015-03-19 | 1 | -0/+1 |
| | |||||
* | Neater copyright header | hut | 2015-03-19 | 10 | -18/+21 |
| | |||||
* | Merge branch 'add-iterm2-image-preview-support' of ↵ | hut | 2015-03-18 | 1 | -2/+10 |
|\ | | | | | | | git://github.com/kattrali/ranger | ||||
| * | Consolidate image preview method preferences | Delisa Mason | 2015-03-09 | 1 | -2/+2 |
| | | | | | | | | | | * Remove use_w3m_image_preview and use_iterm2_image_preview in favor of preview_images_method, easing the development of other image preview methods as needed | ||||
| * | Switch image displayers based on preferences | Delisa Mason | 2015-03-08 | 1 | -2/+10 |
| | | |||||
* | | Merge pull request #274 from anekos/fix/os-does-not-have-mkdirs | hut | 2015-03-18 | 1 | -1/+1 |
|\ \ | | | | | | | os module does not have "mkdirs" function | ||||
| * | | Fix function name: s/mkdirs/makedirs/ | anekos | 2015-03-12 | 1 | -1/+1 |
| | | | |||||
* | | | core.linemode: API refactoring + better documentation | Wojciech Siewierski | 2015-03-18 | 1 | -6/+10 |
|/ / | | | | | | | | | | | The custom linemode may leave out the infostring or explicitly raise NotImplementedError to use the default implementation which previously was only available to the "filename" linemode. | ||||
* | | config.commands: :linemode and :default_linemode tab completion | Wojciech Siewierski | 2015-03-10 | 1 | -46/+0 |
| | | |||||
* | | core.linemode: fix up vifon's patches from PR #264 | hut | 2015-03-09 | 1 | -2/+2 |
| | | |||||
* | | Merge branch 'linemode_api' of https://github.com/Vifon/ranger | hut | 2015-03-09 | 2 | -2/+80 |
|\ \ | |||||
| * | | further linemode refactoring | Wojciech Siewierski | 2015-02-22 | 2 | -15/+2 |
| | | | | | | | | | | | | | | | - registered linemodes list moved to FileSystemObject - ranger.api module updated | ||||
| * | | linemode refactoring; custom linemodes possible | Wojciech Siewierski | 2015-02-22 | 2 | -2/+93 |
| | | | |||||
* | | | Merge branch 'macros_with_flat' of https://github.com/Vifon/ranger | hut | 2015-03-09 | 1 | -3/+3 |
|\ \ \ | |_|/ |/| | | |||||
| * | | core.actions: the file macros work properly with :flat | Wojciech Siewierski | 2015-02-18 | 1 | -3/+3 |
| |/ | | | | | | | %s, %f and %t in particular. | ||||
* / | 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. | ||||
* | 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) | ||||
* | 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 | ||||
* | core.fm: typo | 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 | ||||
* | Fix renaming with insufficient privileges | Alexander Buddenbrock | 2015-02-12 | 1 | -0/+2 |
| | | | | | | | | | | | 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 | 2 | -3/+3 |
| | |||||
* | 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 | 2 | -3/+3 |
| | | | | | 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 |
| | |||||
* | core.loader: don't follow links when calculating size | hut | 2015-02-06 | 1 | -0/+2 |
| | |||||
* | 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. | ||||
* | 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 |
| | |||||
* | 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 |
| | |||||
* | 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 ..." | ||||
* | core.metadata: data of files with empty metadata is not stored | Wojciech Siewierski | 2015-01-17 | 1 | -0/+10 |
| | |||||
* | core.metadata: added another TODO entry | hut | 2015-01-17 | 1 | -0/+1 |
| | |||||
* | core.metadata: add some TODO entries | hut | 2015-01-17 | 1 | -0/+3 |
| | |||||
* | core.metadata: delete keys if value is empty | hut | 2015-01-17 | 1 | -0/+5 |
| | |||||
* | core.metadata: use DefaultOpenStruct instead of OpenStruct | hut | 2015-01-17 | 1 | -4/+4 |
| | |||||
* | core.metadata: use basenames by default | hut | 2015-01-17 | 1 | -2/+4 |
| | |||||
* | core.metadata: works well now, at first glance | hut | 2015-01-17 | 1 | -106/+64 |
| | |||||
* | core.metadata: added comments for self.meta{file,data}_cache | hut | 2015-01-17 | 1 | -0/+2 |
| | |||||
* | started porting core.metadata from csv to json | hut | 2015-01-17 | 1 | -12/+24 |
| | |||||
* | adapted commands for MetadataManager | hut | 2015-01-16 | 1 | -2/+2 |
| |