summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* Added except catching for Python2.Jon Anderson2018-01-212-2/+4
| | | | | | | When reading a file for which Ranger doesn't have permissions, Python3 throws an OSError. Python2 on the other hand throws a IOError, which wasn't being caught and caused Ranger to crash. IOError was added to catch statements for this reason.
* Merge pull request #995 from Vifon/pdf-previewshut2017-12-191-1/+10
|\ | | | | scope.sh: Add the image-based PDF previews (disabled by default)
| * scope.sh: Add the image-based PDF previews (disabled by default)Wojciech Siewierski2017-12-131-1/+10
| | | | | | | | | | | | | | | | | | | | By default they are rendered for the FullHD resolution as it should be both legible on any resolution and generate not too large files. The order of handing the previews was changed to handle the image-based previews first as they are easy to toggle anyway and it makes sense for them to override any other preview type if enabled and available.
* | Merge pull request #1004 from Vifon/vifon/pylint_fix_and_refactorhut2017-12-1915-38/+67
|\ \ | | | | | | Fix the "inconsistent-return-statements" Pylint warning
| * | Pylint: Disable the stop-iteration-return checkWojciech Siewierski2017-12-171-1/+1
| | | | | | | | | | | | | | | I'm not sure if the suggested solution is portable between Python 2 and 3, so I'm disabling it for now.
| * | Pylint & Flake8: Add a local rule exceptionWojciech Siewierski2017-12-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Somehow "too-many-locals" was not failing before, probably because Pylint got updated. The list of Pylint exceptions made the line too long for Flake8 so this check was disabled too for this line.
| * | Fix the "inconsistent-return-statements" Pylint warningWojciech Siewierski2017-12-1714-35/+64
| | | | | | | | | | | | | | | Some of the changes definitely could have been done better with some refactoring instead of adding a "return" or two. Patches welcome!
| * | Change the encoding from utf8 to utf-8Wojciech Siewierski2017-12-171-1/+1
| | | | | | | | | | | | | | | Both work for Python just as well but the former causes GNU Emacs to freak out.
* | | README: Add an additional space for consistencyWojciech Siewierski2017-12-191-1/+1
| | |
* | | README: Enumerate some of the possible --copy-config argumentsWojciech Siewierski2017-12-181-3/+3
| | |
* | | README: Make it clear that --copy-config takes an argumentWojciech Siewierski2017-12-171-1/+1
|/ / | | | | | | Closes #1002.
* | rc.conf: "Q" runs ":quitall" instead of ":quit!"Wojciech Siewierski2017-12-161-1/+1
| | | | | | | | Closes #924.
* | rifle_sxiv.sh: be POSIX, single = for string eqDaniel Lublin2017-12-141-1/+1
|/
* core.actions: reload rifle config on fm.reset() / Ctrl+Rhut2017-12-121-1/+2
|
* Bump the version in README and the manpageWojciech Siewierski2017-12-073-6/+6
|
* Rotate the images according to the EXIF dataWojciech Siewierski2017-12-061-0/+9
| | | | Fixes #927.
* Merge branch 'config/openPDFinMacOS' of https://github.com/YoungxHelsinki/rangerhut2017-12-021-0/+1
|\
| * Open PDFs with Preview in macOSSeyoung2017-11-221-0/+1
| |
* | Fix missing `@` characterZabielski, Kamil2017-12-011-1/+1
| | | | | | | | Signed-off-by: Zabielski, Kamil <kamil.zabielski@outlook.com>
* | Keep the trailing/leading whitespace in the tagged files' pathsWojciech Siewierski2017-11-301-1/+1
| | | | | | | | | | If a tagged file had a space at the end (or sometimes the beginning) of its name, it wasn't considered tagged after a restart.
* | Fixed memory leakage (squashed 2 commits)Marvin Johanning2017-11-281-0/+2
| |
* | gui.widgets.taskview: fix J/K keyshut2017-11-281-1/+1
|/
* Bump the version number for the PyPI release v1.9.0b6Wojciech Siewierski2017-11-191-1/+1
|
* rc.conf: map <F2> to `rename_append`, fixes #818hut2017-11-141-1/+1
|
* container.bookmarks: fix bad line continuationhut2017-10-181-1/+1
|
* Merge branch 'lint_continuation' of https://github.com/nfnty/rangerhut2017-10-173-5/+6
|\
| * tests: Reenable indentation lintingnfnty2017-07-303-5/+6
| |
* | Merge branch 'one-indexed' of https://github.com/n1amr/rangerhut2017-10-177-2/+35
|\ \
| * | add settings option to use one indexed line numbersAmr Alaa2017-09-178-4/+37
| | |
* | | Add ranger.gui.widgets.browsercolumn.hook_before_drawinghut2017-10-151-0/+6
| | |
* | | If the user config is not available, always load the global oneWojciech Siewierski2017-10-071-2/+4
| | | | | | | | | | | | | | | | | | Ignore the RANGER_LOAD_DEFAULT_RC environmental variable if the user config doesn't exist or is unreadable because not loading any config would result in an unusable ranger instance.
* | | Fix the badly indented line continuationWojciech Siewierski2017-10-071-1/+1
| | |
* | | Fix the whitespace (pylint error)Wojciech Siewierski2017-10-071-1/+1
| | |
* | | config.commands: make ":find .." move to parent dirhut2017-10-011-1/+4
| | | | | | | | | | | | fixes #949
* | | Add option 'save_backtick_bookmark', fixes #947hut2017-10-017-4/+37
| | |
* | | sort container.settings.ALLOWED_SETTINGShut2017-09-261-6/+6
| | |
* | | config.commands: fix order of answers for <F1>. Fixes #935hut2017-09-261-1/+1
| | |
* | | doc/ranger.1: mention that "t" flag uses x-terminal-emulatorhut2017-09-262-4/+4
| | |
* | | rebuilt man pagehut2017-09-262-5/+5
|/ /
* | Merge branch 'fix-question-movement' of https://github.com/0xjmz/ranger into ↵Marcin Zawada2017-09-030-0/+0
|\ \ | | | | | | | | | fix-question-movement
| * \ Merge branch 'master' into fix-question-movement0xjmz2017-08-013-5/+16
| |\ \
| * | | Movement for long questionsMarcin Zawada2017-07-271-6/+12
| | | | | | | | | | | | | | | | | | | | Enable movement of questions given in console mode that exceed the terminal width
* | | | Fix question movement when typingMarcin Zawada2017-09-031-1/+1
| | | |
* | | | Movement for long questionsMarcin Zawada2017-09-031-6/+12
| | | | | | | | | | | | | | | | | | | | Enable movement of questions given in console mode that exceed the terminal width
* | | | New mime type: audio/webmormung2017-08-251-0/+1
| |/ / |/| |
* | | doc/tools: Fix shebangnfnty2017-07-302-3/+4
| |/ |/|
* | Merge remote-tracking branch 'Vifon/vifon/pagewise-movement-symmetry'nfnty2017-07-301-2/+12
|\ \ | |/ |/|
| * Make the pagewise scrolling symmetricalWojciech Siewierski2017-07-281-2/+12
|/ | | | | | Moving half a page down and back up should put the user in the original position. It was true only if the file count was even. If it was odd, the user ended up one file above the originally focused one.
* .pylintrc: ignore bad-continuationhut2017-07-161-1/+1
|
* doc/ranger.1: mention "FROZEN", so people can grep ithut2017-07-162-8/+10
|