summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
...
* applied generally useful changes from emacs branchhut2015-05-042-3/+7
| | | | | | | | | The 'lt' and 'gt' special keys were added so you can bind actions to something like "<C-lt>" meaning "Ctrl+<" and <C-gt> meaning "Ctrl+>". "key > 0" was changed to "key >= 0" in ranger.gui.ui so that Ctrl+Space (which has the key value 0) can be recognized. I am not 100% sure if this has side effects.
* rifle.conf: added ristrettohut2015-05-021-7/+8
|
* cheatsheet: added whitespace in git linkhut2015-05-021-1/+1
|
* ext.rifle: added "env" condition to check for env. varshut2015-04-272-0/+3
|
* cheatsheet: fix text alignment, add info about d<key> bindingshut2015-04-191-19/+52
|
* cheatsheet: add reference to ranger's IRC channelhut2015-04-191-4/+18
|
* cheatsheet: widen the F12 and = keyshut2015-04-191-6/+6
|
* cheatsheet: change style of textboxeshut2015-04-191-16/+16
|
* cheatsheet: highlight hjkl in red, not greenhut2015-04-191-5/+3
|
* cheatsheet: highlight the "?" keyhut2015-04-191-5/+5
|
* cheatsheet: added three new sectionshut2015-04-191-107/+558
|
* added example plugin that adds a linemodehut2015-04-191-0/+16
|
* cheatsheet: added missing "^D"hut2015-04-171-9/+21
|
* added doc/cheatsheet.svghut2015-04-171-0/+4024
|
* config.commands: removed the "b" before string literalshut2015-04-171-2/+2
| | | | Why was it there anyway? Fixes #299
* core.runner: fix `:shell $SHELL` not working with fishhut2015-04-161-2/+5
| | | | This fixes #300 and was caused by #187 (25dcff6)
* CHANGELOG: typohut2015-04-141-1/+1
|
* Change name back to "ranger-master" in --version outputhut2015-04-141-1/+1
|
* Should I dual ranger/cleric or wait for the THAC0 bonus? v1.7.0hut2015-04-1416-16/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Squashed commit of the following: commit 7236dde27bf33fec5097c223f0d70598b10ba05f Author: hut <hut@lepus.uberspace.de> Date: Mon Apr 13 14:33:59 2015 +0200 wrote changelog entry commit 73e76b0f9a22ad8122154c4a2763c27ebce9be37 Author: hut <hut@lepus.uberspace.de> Date: Mon Apr 13 13:41:27 2015 +0200 update version number in man page commit b1948b9382027ed55d095a936610bc62f7cdba9a Author: hut <hut@lepus.uberspace.de> Date: Mon Apr 13 13:41:08 2015 +0200 update rifle version number commit a96a8a808a3c68eb848a3e0361fd95cb8c643d59 Author: hut <hut@lepus.uberspace.de> Date: Mon Apr 13 13:34:59 2015 +0200 s/ranger-master/ranger-stable/ commit 6967a48193227b4a0c843e8831e5511005179f69 Author: hut <hut@lepus.uberspace.de> Date: Mon Apr 13 13:33:06 2015 +0200 updated version number commit 0cbc401fd25fc4d307d026628e12ef1106a42bdf Author: hut <hut@lepus.uberspace.de> Date: Mon Apr 13 13:18:26 2015 +0200 updated version info in example plugins
* Merge branch 'nocompat'hut2015-04-146-131/+4
|\
| * core.environment: deleted module, it was obsoletehut2015-04-144-123/+4
| |
| * api.commands: removed alias() and DELETE_WARNINGhut2015-04-141-3/+0
| | | | | | | | they were obsolete
| * removed ranger/fsobject.py (it was obsolete)hut2015-04-141-5/+0
|/
* config.commands: fixed :meta tab completionhut2015-04-141-1/+5
|
* config.commands: fix tab completion in :linemodehut2015-04-131-1/+2
|
* core.linemode: fix python3 crash in FileInfoLinemodehut2015-04-131-0/+3
|
* README: updated paragraph about supplementary fileshut2015-04-131-5/+5
|
* typohut2015-04-131-1/+1
|
* container.tags: added TagsDummy class for use with --cleanhut2015-04-132-1/+40
|
* doc/ranger.1: fix paths in RESOURCES sectionhut2015-04-132-6/+6
|
* moved "doc/examples" to "examples" for more visibilityhut2015-04-1314-3/+3
|
* doc/ranger.1: updated RESOURCES sectionhut2015-04-132-4/+14
|
* doc/ranger.1: added entries for :help and :setintaghut2015-04-132-1/+23
|
* core.actions: update execute_file() docstringhut2015-04-131-6/+10
|
* config/commands: fixed script change detection in :bulkrenamehut2015-04-121-7/+9
| | | | See also: #283
* config/commands.py: deduplicationhut2015-04-121-5/+4
|
* config/commands: fix + cleanup randy's patch, add commentshut2015-04-121-18/+22
|
* commands.py: skip retagging in bulkrename if rename shellscript is changedrandnobx2015-04-111-10/+20
| | | | commands.py: moved first tag section after initial check for name change to fix bugs
* added tag management for rename, delete, bulkrename, and moving of filesrandnobx2015-04-112-0/+33
| | | | | | | | fixed typo in rename added recursive checking to move, rename, and delete; refactored previos code bugfix: moved recursive tag checking for delete to commands.py
* ranger.1: added documentation for %rangerdir and %space macroshut2015-04-103-2/+18
|
* added "%space" macro that expands to " ", use it in rc.confhut2015-04-102-11/+12
|
* examples/bash_automatic_cd.sh: use mktemphut2015-04-091-1/+1
| | | | This is a follow-up to #282
* Merge branch 'feature/fix-embedded-shell' of git://github.com/eiiches/rangerhut2015-04-091-2/+2
|\
| * ranger.py: fixed issues with $tempfile in embedded shellEiichi Sato2015-03-281-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | Previously, $tempfile (namely, /tmp/chosendir) was not cleaned up correctly when the ranger process quit in `pwd` without moving to other directory. This causes permission errors in multi-user environments trying to overwrite $tempfile created by a different user. This commit solves the problem in two ways: - Correctly clean up temporary files - Avoid writing to the same temporary by using mktemp(1)
* | Merge branch 'master' of git://github.com/arwer13/rangerhut2015-04-091-11/+11
|\ \
| * | rifle.conf: openers for images placed after openers for documents.Artyom Veremeenko2015-03-291-11/+11
| | | | | | | | | | | | It fixes, for instance, problem with djvu files opened by image viewers.
* | | Merge branch 'linemode_api' of git://github.com/Vifon/rangerhut2015-04-095-3/+24
|\ \ \
| * | | new linemode with the information from file(1)Wojciech Siewierski2015-03-305-3/+24
| |/ /
* / / :flat statusbar indicator addedWojciech Siewierski2015-03-302-2/+9
|/ /
* | Merge pull request #285 from Vifon/linemode_apihut2015-03-231-2/+3
|\ \ | | | | | | core.linemode: updated a docstring