about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | | | Merge pull request #1958 from Vifon/setuptoolsWojciech Siewierski2020-05-132-13/+5
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | Fully migrate from distutils to setuptools
| * | | | | | Fully migrate from distutils to setuptoolsWojciech Siewierski2020-05-132-13/+5
|/ / / / / / | | | | | | | | | | | | | | | | | | Even the Python docs recommend setuptools over using distutils directly.
* | | | | | Merge branch 'tkukurin-master'toonn2020-03-041-40/+55
|\ \ \ \ \ \
| * | | | | | Drop double setting and prefer basename over splittoonn2020-03-041-4/+2
| | | | | | |
| * | | | | | Change approach to multiplexer title renamingtoonn2020-03-021-41/+58
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There were a couple bugs causing ranger to miss opportunities to restore multiplexer window names in tmux. Fixes #1805
| * | | | | | Update ui.pyToni Kukurin2020-03-021-1/+1
| | | | | | | | | | | | | | | | | | | | | Fix 'FileNotFound' if `screen` is not available
| | * | | | | Fix redundant whitespace in class definitiontoonn2020-06-271-1/+0
| | | | | | |
| | * | | | | Py26 does not support implicit format spec numberingtoonn2020-03-045-19/+26
| |/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As FichteFoll rightly pointed outin #1840, python 2.6 did *not* support implicit format spec numbering for positional arguments. This commit brings the code back in line with our promise that it is compatible with python 2.6. I used the following patterns to grep for occurences: - '"\{\}"' - '"\{:.*\}"' - "'\{\}'" - "'\{:.*\}'"
* | | | | | Merge remote-tracking branch 'dmarcoux/address-issue-1866'toonn2020-03-032-3/+3
|\ \ \ \ \ \ | |/ / / / / |/| | | | |
| * | | | | Refer to the correct environment variable for selecting a theme for batDany Marcoux2020-03-032-3/+3
|/ / / / / | | | | | | | | | | | | | | | Closes #1866
* | | | | Merge branch 'xdg-open-option'toonn2020-02-241-1/+1
|\ \ \ \ \
| * | | | | xdg-open is not compatible with the -- conventiontoonn2020-02-241-1/+1
|/ / / / / | | | | | | | | | | | | | | | Fixes #1853
* | | | | Merge branch 'emberfade-fix-trash-location'toonn2020-02-233-8/+8
|\ \ \ \ \ | |_|/ / / |/| | | |
| * | | | doc: change trash locationemberfade2020-02-222-7/+7
| | | | |
| * | | | rifle.conf: change fallback trash location emberfade2020-02-221-1/+1
|/ / / / | | | | | | | | | | | | Change the fallback trash location to use the correct environment variable and ranger's default data directory.
* | | | Merge branch 'jrwrigh-patch-1'toonn2020-02-082-3/+5
|\ \ \ \ | |/ / / |/| | |
| * | | Clarify that defaults will not be loadedtoonn2020-02-082-3/+5
| | | | | | | | | | | | | | | | | | | | Explicitly state that defaults won't be loaded if a configuration file is present and render the docs.
| * | | doc(rifle): Add note of rifle config reading in manpageJames Wright2020-02-071-1/+1
|/ / / | | | | | | In response to #1825.
* | | Merge remote-tracking branch 'vifon/tmpcache-cleanup'toonn2020-01-301-0/+13
|\ \ \ | |/ / |/| |
| * | Add a newline before printing the exception for better readabilityWojciech Siewierski2020-01-271-1/+1
| | |
| * | Cleanup the temporary cache directory in the --clean modeWojciech Siewierski2020-01-271-0/+13
|/ /
* | Flip the __release__ flagtoonn2019-12-311-1/+1
| |
* | Tax loss harvesting release, nothing to see here v1.9.3toonn2019-12-317-9/+63
| |
* | Fix overflows in man page formattingtoonn2019-12-312-16/+20
| |
* | Merge branch 'dmitmel-examples-bash-automatic-cd'toonn2019-12-315-37/+43
|\ \
| * | Added shellcheck directives for specifying shellDmytro Meleshko2019-11-062-0/+4
| | |
| * | Added a notice about sourcing examples/shell_subshell_notice.sh as wellDmytro Meleshko2019-11-061-1/+2
| | |
| * | Added mention about sourcing examples/shell_automatic_cd.sh from shell configDmytro Meleshko2019-11-061-1/+2
| | |
| * | Merge branch 'master' into examples-bash-automatic-cdDmytro Meleshko2019-11-062-23/+37
| |\ \
| * | | Updated comments about compatibility with ranger versionsDmytro Meleshko2019-11-062-2/+2
| | | |
| * | | Removed shebangsDmytro Meleshko2019-11-062-4/+0
| | | |
| * | | Renamed script files to not mention BashDmytro Meleshko2019-11-022-0/+0
| | | |
| * | | Added shebangs and removed notices specifically about BashDmytro Meleshko2019-11-022-4/+8
| | | |
| * | | Apply requested changes to ranger.py and enforce full POSIX complianceDmytro Meleshko2019-10-282-7/+6
| | | |
| * | | Removed replaced $(<...) with catDmytro Meleshko2019-10-281-1/+1
| | | |
| * | | Added comparison with $PWD backDmytro Meleshko2019-10-281-1/+1
| | | |
| * | | Replaced `[[` with POSIX-compatible `[`Dmytro Meleshko2019-10-281-1/+1
| | | |
| * | | Added pattern for mktemp backDmytro Meleshko2019-10-281-1/+1
| | | |
| * | | Refactor the shell script embedded in ranger.pyDmytro Meleshko2019-10-271-9/+10
| | | |
| * | | Removed unnecessary arguments for mktemp in examples/bash_automatic_cd.shDmytro Meleshko2019-10-271-1/+1
| | | |
| * | | Refactored examples/bash_automatic_cd.shDmytro Meleshko2019-10-271-7/+7
| | | |
* | | | Merge branch 'revolter-patch-1'toonn2019-12-311-1/+1
|\ \ \ \
| * | | | Remove duplicate codeIulian Onofrei2019-11-071-1/+1
| | |/ / | |/| |
* | | | Merge branch 'aRkedos-tmux-fix'toonn2019-12-314-28/+65
|\ \ \ \
| * | | | Refactor handle_multiplexertoonn2019-12-315-64/+56
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Split the method into name changing and resetting methods. `screen -Q` is relatively new so resetting the screen title won't work on systems with an older version, macOS for example. Fixes #1739
| * | | | refactoring of redundant codearkedos2019-12-314-23/+70
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | squashing commits for cleaner history. whitespace final fixes refactor of redundant code
| * | | | applying proposed tmux renaming fixarkedos2019-12-311-6/+4
| | | | |
* | | | | Merge branch 'davidgur-master'toonn2019-12-311-0/+1
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | Fixes #859, #1071, #1308
| * | | | Merge branch 'master' into masterDavid Gurevich2019-11-172-1/+9
| |\ \ \ \
| * \ \ \ \ Merge branch 'master' into masterDavid Gurevich2019-11-161-0/+3
| |\ \ \ \ \