about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* Placate our pep 8 overlordstoonn2018-10-281-4/+2
|
* Refactor encoding detectiontoonn2018-10-281-19/+22
|
* Put our guesses back in the except clausetoonn2018-10-281-13/+12
|
* File encoding guessing order changed.Baranovskiy Konstantin2018-10-261-13/+16
| | | | Fixes #1350
* Merge branch 'baranovskiy-fix_decode'toonn2018-10-261-5/+10
|\
| * Broken preview of highlighted text with Python3Baranovskiy Konstantin2018-10-261-5/+10
|/ | | | | | | | | | | | | | | | | ranger/core/loader.py: CommandLoader.generate() gets text for preview panel from scope.sh as the blocks of byrearray (max 512 bytes). This blocks immediately decoded to utf-8. But in case when muli-byte unicode characters is present they may be split and python will can't correctly to decode it. For example: b'abc\xd0', b'\x9a...' b'\xd0\x9a' - is cyrillic letter 'K' and it can't be decoded separately (UnicodeDecodeError occurs). So, received data blocks (bytearrays) must be collected and only after that decoded as one whole byrearray. Fixes #906 Fixes #967 Fixes #1166
* Merge branch 'baranovskiy-fix_1347'toonn2018-10-263-8/+8
|\
| * Restoration of scrolling in pager.Baranovskiy Konstantin2018-10-263-8/+8
|/ | | | Fixes #1347
* Merge branch 'manw3moffset'toonn2018-10-262-1/+12
|\
| * Document w3m_offset in Settings section of manpagetoonn2018-10-092-17/+28
| |
* | Merge branch 'baranovskiy-fix_1347'toonn2018-10-263-7/+9
|\ \
| * | Restoration of scrolling in pager.Baranovskiy Konstantin2018-10-253-7/+9
|/ / | | | | | | Fixes #1347
* | Merge pull request #1354 from me-ru-ru/masterToon Nolten2018-10-251-2/+0
|\ \ | | | | | | Delete unused variable
| * | Delete unused variablemeruru2018-10-251-2/+0
|/ /
* | Merge pull request #1339 from GermainZ/file_preview_scrolling_limitsWojciech Siewierski2018-10-141-2/+5
|\ \ | | | | | | Do not allow scrolling beyond end of file preview
| * \ Merge branch 'master' into file_preview_scrolling_limitsWojciech Siewierski2018-10-145-17/+33
| |\ \ | |/ / |/| |
* | | Merge pull request #1338 from GermainZ/human-readable-sizes-optionWojciech Siewierski2018-10-145-17/+33
|\ \ \ | |_|/ |/| | Add size_in_bytes setting to optionally show all sizes in bytes
| * | Add size_in_bytes setting to show all sizes in bytesGermainZ2018-10-145-17/+33
|/ /
| * Do not allow scrolling beyond end of file previewGermainZ2018-10-141-2/+5
|/
* Merge branch 'LeLobster-stborderw3mfix'toonn2018-10-085-18/+31
|\
| * Merge branch 'master' into stborderw3mfixLeLobster2018-10-071-1/+1
| |\
| * | Resolve requested changesLeLobster2018-10-073-6/+6
| | |
| * | Rename st_* to w3m_* here as well, oopsLeLobster2018-10-072-11/+15
| | | | | | | | | | | | Undo 'changes' to rifle doc
| * | Rename setting st_* to w3m_*. Did I really forget to change this earlier?LeLobster2018-10-061-1/+1
| | |
| * | Revert "Check the env variable TERM before setting w3m offset"LeLobster2018-10-061-7/+2
| | | | | | | | | | | | This reverts commit d5d668a62faeea07a7476a14fef0f63ea84a83e8.
| * | Update man pages and config opt name to be generic in stead of stLeLobster2018-10-053-6/+6
| | |
| * | Merge branch 'stborderw3mfix' of github.com:LeLobster/ranger into stborderw3mfixLeLobster2018-10-051-2/+2
| |\ \
| | * \ Merge branch 'master' into stborderw3mfixLeLobster2018-10-051-2/+2
| | |\ \
| * | | | Check the env variable TERM before setting w3m offsetLeLobster2018-10-051-2/+7
| |/ / /
| * | | Add comment about st_border_offset in the man pageLeLobster2018-10-053-30/+28
| | | |
| * | | Comply with pylint's complaint about > 15 local varsLeLobster2018-10-051-4/+4
| | | |
| * | | Fix ALLOWED_SETTINGS orderLeLobster2018-10-041-1/+1
| | | |
| * | | Add option to set a border value for use with st termLeLobster2018-10-043-2/+9
| | | |
* | | | Replace pipenv with a simple requirements.txtWojciech Siewierski2018-10-084-193/+5
| | | | | | | | | | | | | | | | | | | | | | | | Motivations: - we do not want to pin a single Python version like Pipenv usually does - constant issues like https://github.com/pypa/pipenv/issues/2924
* | | | Merge pull request #1330 from Vifon/preview_scroll_actionWojciech Siewierski2018-10-084-1/+21
|\ \ \ \ | | | | | | | | | | Add a bindable action for scrolling the file preview
| * | | | Add a bindable action for scrolling the file previewWojciech Siewierski2018-10-084-1/+21
|/ / / /
* | | | Merge pull request #1329 from pvl1/masterWojciech Siewierski2018-10-082-3/+8
|\ \ \ \ | |_|_|/ |/| | | | | | | | | | | initial mouse wheel scroll support in preview Closes #147.
| * | | Refactor the code and fix the coding styleWojciech Siewierski2018-10-082-10/+4
| | | |
| * | | Merge branch 'master' of https://github.com/pvl1/rangerpavel2018-10-071-1/+1
| |\ \ \
| | * \ \ Merge branch 'master' into masterpvl12018-10-071-1/+1
| | |\ \ \ | |_|/ / / |/| | | |
* | | | | Fix a misnamed command in the documentationWojciech Siewierski2018-10-071-1/+1
| |_|_|/ |/| | |
| * | | fixed CI errorspavel2018-10-071-7/+8
| |/ /
| * | limited scrolling to the end of the filepavel2018-10-071-5/+6
| | |
| * | initial mouse wheel scroll supportpavel2018-10-072-2/+11
|/ /
* | Merge pull request #1324 from Vifon/vifon/travis_updateWojciech Siewierski2018-10-031-2/+2
|\ \ | |/ |/| Update the Travis handling
| * Travis: Python 3.7 seems to be broken on Travis, let's leave it for nowWojciech Siewierski2018-10-031-1/+0
| |
| * Travis: Update the checked python versionsWojciech Siewierski2018-10-031-1/+2
| |
| * Make sure Travis uses pipenv when testingWojciech Siewierski2018-10-031-1/+1
|/
* Merge pull request #1319 from mark-dawn/kitty-format-fixToon Nolten2018-10-011-2/+2
|\ | | | | Fix for issue #1312 (wrong color format)
| * Fix for issue #1312 (wrong color format)mark-dawn2018-09-301-2/+2
|/ | | | | Moved the format conversion line from the stream section to the general one, as PIL does not autoconvert on save