summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* AUTHORS: fix randy's namehut2015-03-221-1/+1
|
* core.actions: added TODO messagehut2015-03-191-0/+1
|
* Neater copyright headerhut2015-03-1971-202/+192
|
* config/commands.py: refractored randynobx's patchhut2015-03-183-23/+22
| | | | | 1. moved colorscheme-finding code from fsobject.py to colorscheme.py 2. use set rather than dict to uniquely collect colorschemes
* Merge branch 'colorscheme_tab_complete' of git://github.com/randynobx/rangerhut2015-03-182-2/+26
|\
| * added tab complete functionality for :set colorschemesrandnobx2015-03-112-2/+26
| | | | | | | | | | | | ranger.container.fsobject: fixed relative path for colorscheme modules ranger.container.fsobject: added checking of .config/ranger/colorschemes
* | Merge branch 'add-iterm2-image-preview-support' of ↵hut2015-03-186-24/+191
|\ \ | | | | | | | | | git://github.com/kattrali/ranger
| * | Consolidate image preview method preferencesDelisa Mason2015-03-095-17/+19
| | | | | | | | | | | | | | | * 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
| * | Update documentationDelisa Mason2015-03-082-8/+32
| | |
| * | Switch image displayers based on preferencesDelisa Mason2015-03-081-2/+10
| | |
| * | Scale iTerm2 image previews to fit within “best guess” dimensionsDelisa Mason2015-03-081-7/+78
| | | | | | | | | | | | * Assume a character size of 8x11 as a good average which should fit most scenarios
| * | Create image displayer impls for w3m, iterm2Delisa Mason2015-03-081-11/+63
| | |
| * | Add configuration options for image preview modesDelisa Mason2015-03-082-1/+11
| | |
* | | Merge pull request #274 from anekos/fix/os-does-not-have-mkdirshut2015-03-181-1/+1
|\ \ \ | | | | | | | | os module does not have "mkdirs" function
| * | | Fix function name: s/mkdirs/makedirs/anekos2015-03-121-1/+1
| | |/ | |/|
* | | ranger.api: added docstring to register_linemodehut2015-03-181-0/+1
| | |
* | | renamed `ranger.api.custom_linemode` back to `...register_linemode`hut2015-03-181-1/+1
| | |
* | | core.linemode: API refactoring + better documentationWojciech Siewierski2015-03-182-9/+13
| | | | | | | | | | | | | | | | | | 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.
* | | the register_linemode function reimplemented as a decoratorWojciech Siewierski2015-03-181-4/+3
| | |
* | | Merge pull request #280 from anekos/fix/fix-a-type-fmhut2015-03-181-1/+1
|\ \ \ | | | | | | | | Fix a typo s/self\.notify/self\.fm\.notify/
| * | | Fix a typo s/self\.notify/self\.fm\.notify/anekos2015-03-161-1/+1
|/ / /
* / / config/rc.conf: remapped <DELETE> to dDhut2015-03-121-1/+3
|/ /
* | added solarized colorscheme to list of available-by-default colorschemes in ↵randnobx2015-03-091-1/+1
| | | | | | | | rc.conf
* | config.commands: :linemode and :default_linemode tab completionWojciech Siewierski2015-03-102-46/+31
| |
* | core.linemode: fix up vifon's patches from PR #264hut2015-03-093-7/+7
| |
* | Merge branch 'linemode_api' of https://github.com/Vifon/rangerhut2015-03-097-36/+115
|\ \
| * | further linemode refactoringWojciech Siewierski2015-02-225-20/+18
| | | | | | | | | | | | | | | - registered linemodes list moved to FileSystemObject - ranger.api module updated
| * | doc/ranger.1: updated the linemode description in the man pageWojciech Siewierski2015-02-221-0/+3
| | |
| * | linemode refactoring; custom linemodes possibleWojciech Siewierski2015-02-225-36/+114
| | |
* | | Merge branch 'macros_with_flat' of https://github.com/Vifon/rangerhut2015-03-096-14/+12
|\ \ \
| * | | core.actions: the file macros work properly with :flatWojciech Siewierski2015-02-181-3/+3
| | | | | | | | | | | | | | | | %s, %f and %t in particular.
| * | | fsobject.drawn_basename renamed to fsobject.relative_pathWojciech Siewierski2015-02-185-11/+9
| | | |
* | | | updated comment to reflect current default value for confirm_on_deleterandnobx2015-03-091-1/+1
| |_|/ |/| |
* | | core.actions: create multi-level directories with :mkdirhut2015-03-051-1/+1
| | | | | | | | | | | | Thanks to @randynobx for suggesting it. See Github issue #238.
* | | add setting for sorting by unicode characterhut2015-03-035-1/+31
| |/ |/|
* | doc/ranger.1: updated man page to reflect --copy-config changeshut2015-02-182-3/+26
|/
* config/commands.py: add commenthut2015-02-181-0/+5
|
* core.main: avoid creating ~/.config/ranger/commands.pychut2015-02-171-0/+3
| | | | This fixes #248 (Cached python should not be stored in .config)
* config/commands_sample.py: return on errorhut2015-02-171-0/+1
|
* core.fm: more sane --copy-config of commands.pyhut2015-02-172-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 commentshut2015-02-171-2/+6
|
* config/commands_sample.py: better docstringhut2015-02-171-1/+1
|
* added a sample commands.pyhut2015-02-171-0/+53
|
* core.fm: typohut2015-02-171-1/+1
|
* Merge branch 'delete_previewed_file_fix' of https://github.com/Vifon/rangerhut2015-02-171-1/+1
|\
| * core.actions: deleting a file with a cached image preview no longer crashes ↵Wojciech Siewierski2015-02-121-1/+1
| | | | | | | | ranger
* | config/commands: interactive "?" key / ":help" commandhut2015-02-161-8/+14
|/
* Fix renaming with insufficient privilegesAlexander Buddenbrock2015-02-122-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.6hut2015-02-106-7/+7
|
* core.fm: give clearer instructions on --copy-confighut2015-02-091-3/+9
|