about summary refs log tree commit diff stats
path: root/ranger/core
Commit message (Collapse)AuthorAgeFilesLines
...
* | Merge branch 'E301' of https://github.com/stepshal/rangerhut2016-06-184-0/+10
|\ \
| * | Add one blank line where is expectedstepshal2016-06-164-0/+10
| |/
* / Add two blank lines where is expectedstepshal2016-06-168-0/+11
|/
* Make exactly one space after commastepshal2016-06-062-3/+3
| | | | Update commands.py
* core.actions: fix wrong check for return value of tab.enter_dirhut2016-06-061-1/+1
|
* Merge branch 'fix-plugin-import' of https://github.com/dflupu/rangerhut2016-05-241-1/+3
|\
| * use importlib to load pugins, and try to load commands from themDaniel Lupu2016-05-191-1/+3
| |
* | core.linemode: fix crash when `file` failshut2016-05-211-2/+5
|/
* core.actions: fix calculation of program indiceshut2016-05-061-4/+5
| | | | | The solutoin of @NoSuck used to break when you used "number 9999" in a declaration of some program.
* Merge branch 'draw_possible_programs-justified' of ↵hut2016-05-061-3/+6
|\ | | | | | | https://github.com/NoSuck/ranger
| * Program indices now line up nicely.The Flying Rapist2016-04-111-3/+6
| |
* | core.loader: in safeDecode, don't crash on broken unicodehut2016-04-151-1/+2
| |
* | core.actions: explicitly close file descriptorhut2016-04-151-12/+13
| | | | | | | | | | | | Thanks to Ale1ster for pointing it out. Fixes #529
* | Add MtimeLinemode and SizeMtimeLinemodeAdam Porter2016-04-051-0/+21
| |
* | make `set foo!` cycle through non-boolean options toohut2016-04-041-1/+12
| |
* | Implement Midnight Commander-like mutlipane viewhut2016-04-011-1/+3
| |
* | Merge branch 'set-bookmark-not-current' of ↵hut2016-03-251-2/+7
|\ \ | | | | | | | | | https://github.com/cirosantilli/ranger
| * | set_bookmark for directories other than the currentCiro Santilli2016-03-211-2/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | Sample usage: :set_bookmark a /home/me/a Motivation: make it easier to set bookmarks from environment variables on rc.conf.
* | | Add %confdir macroCiro Santilli2016-03-211-0/+1
|/ /
* | Merge branch 'pqiv' of https://github.com/noctuid/rangerhut2016-03-201-1/+7
|\ \
| * | open_all_images support for pqivnoctuid2016-03-201-1/+7
| |/
* / Added toggle mode for cut/copy actions.The Flying Rapist2016-03-201-1/+3
|/
* adding ability to clear folder filter upon navigating from it. optional and ↵Vitaly Belman2016-03-061-0/+5
| | | | false by default.
* bookmark: replace delete by __delitem__ for consistency with other methodsLaurent Charignon2016-01-311-1/+1
| | | | | | | We are already using the python magic methods __setitem__, __getitem__, __contains__ and __iter__. It makes sense to use __delitem__ and not have a custom method name for removing bookmarks. We change the only place where this method is called in the code.
* core.actions: added "COMPAT" comment to stick to conventionshut2016-01-241-1/+1
|
* Restore :delete backward compatiblityWojciech Siewierski2016-01-241-1/+4
|
* Move some :delete logic to fm.delete, further refactoringWojciech Siewierski2016-01-241-12/+17
|
* :delete refactoringWojciech Siewierski2016-01-241-11/+7
| | | | | | | Fixes #458. It also fixes the issue where fm.copy_buffer was not properly cleaned up when fm.delete was called with arguments.
* core.actions: in delete(), renamed "narg" to "files"hut2016-01-241-3/+3
|
* Allow :delete to take argumentsWojciech Siewierski2016-01-241-2/+5
| | | | Issue #458 still applies.
* core.main: Check XDG_CACHE_HOME, fixes #442hut2016-01-012-7/+12
|
* core.main: moved 'must run ranger in terminal' messagehut2015-12-051-4/+4
| | | | | | previously this error denied the user from running 'ranger --list-tagged-files=X' outside of a terminal. Now it only denies running ranger interactively outside of a terminal.
* core.main: handle py3 encoding errors in --list-tagged-fileshut2015-12-051-1/+4
|
* core.main: Log the fact of disabling the file previews for rootWojciech Siewierski2015-11-181-0/+1
| | | | Closes #429.
* Added :echo command, disabled :notify commandhut2015-11-141-1/+1
|
* fixed line widths in commit a090d85 (#400)hut2015-11-141-3/+6
|
* Merge branch 'p_macro' of https://github.com/NoSuck/rangerhut2015-11-141-2/+8
|\
| * Added %p macro for full paths of selected files.The Flying Rapist2015-10-181-2/+8
| |
* | Merge branch 'imv' of https://github.com/autrimpo/rangerhut2015-11-141-1/+6
|\ \
| * | open_all_images support for imvMichal Koutenský2015-11-131-1/+6
| | |
* | | Add display of source size for copy/move tasks.Marcel Partap2015-10-201-4/+6
| |/ |/|
* | core.actions: fixed logichut2015-10-091-2/+3
| | | | | | | | | | | | in reload_cwd, you could reach code that used the variable "cwd" even though it wasn't defined. This patch puts this code into an else-block ensuring that cwd is defined.
* | core/actions.py: Add more command documentationWojciech Siewierski2015-10-061-9/+74
| |
* | core/actions.py: Hide the internal commands from the "dump_commands" outputWojciech Siewierski2015-10-061-2/+4
|/ | | | | | | | | - Commands with a docstring starting with a colon (e.g. ":command") are added to the output just as before. - Commands without a docstring whatsoever are listed under the "Undocumented commands" category. Again, no change here. - Commands with a regular docstring are hidden in the "dump_commands" output and should be considered an API.
* fix progress bar regressionnotEvil2015-09-221-6/+13
|
* Merge branch 'universal_scope_sh' of https://github.com/GermainZ/rangerhut2015-09-191-12/+18
|\
| * Use scope.sh for all the previewsGermainZ2015-09-141-12/+18
| | | | | | | | | | | | … instead of calling w3mimgdisplay for (potentially non-supported, e.g. SVG files) images, which also has the side effect of making custom previews for images impossible.
* | Merge branch 'master' of https://github.com/notEvil/rangerhut2015-09-131-7/+6
|\ \
| * | make mv/cp generators yield progressarappold2015-08-171-7/+6
| |/
* / really fix #300 and #341iamevn2015-09-081-1/+1
|/ | | | os.environ['SHELL'] returns '/usr/bin/fish' which != 'fish' this should fix fish compatibility.