summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | linemode refactoring; custom linemodes possibleWojciech Siewierski2015-02-225-36/+114
| | |
* | | Merge branch 'macros_with_flat' of https://github.com/Vifon/rangerhut2015-03-096-14/+12
|\ \ \
| * | | core.actions: the file macros work properly with :flatWojciech Siewierski2015-02-181-3/+3
| | | | | | | | | | | | | | | | %s, %f and %t in particular.
| * | | fsobject.drawn_basename renamed to fsobject.relative_pathWojciech Siewierski2015-02-185-11/+9
| | | |
* | | | updated comment to reflect current default value for confirm_on_deleterandnobx2015-03-091-1/+1
| |_|/ |/| |
* | | core.actions: create multi-level directories with :mkdirhut2015-03-051-1/+1
| | | | | | | | | | | | Thanks to @randynobx for suggesting it. See Github issue #238.
* | | add setting for sorting by unicode characterhut2015-03-035-1/+31
| |/ |/|
* | doc/ranger.1: updated man page to reflect --copy-config changeshut2015-02-182-3/+26
|/
* config/commands.py: add commenthut2015-02-181-0/+5
|
* core.main: avoid creating ~/.config/ranger/commands.pychut2015-02-171-0/+3
| | | | This fixes #248 (Cached python should not be stored in .config)
* config/commands_sample.py: return on errorhut2015-02-171-0/+1
|
* core.fm: more sane --copy-config of commands.pyhut2015-02-172-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | This commit makes ranger only copy a small sample commands.py to ~/.config/ranger/commands.py when running --copy-config=commands. The default commands.py will be copied to commands_full.py instead, a file that will not be loaded at all, and will only serve as a reference. It can be obtained with --copy-config=commands_full This will avoid that the average user's commands.py will break ranger whenever she's updating ranger after using --copy-config=all. It's necessary because commands.py contains much of the actual program logic, but it can't be kept compatible like other configuration files, and the user can't be expected to always keep an up-to-date version of it. Overview: Removed --copy-config rule: --copy-config=commands: commands.py -> commands.py New --copy-config rules: --copy-config=commands: commands_sample.py -> commands.py --copy-config=commands_full: commands.py -> commands_full.py
* config/commands_sample.py: added commentshut2015-02-171-2/+6
|
* config/commands_sample.py: better docstringhut2015-02-171-1/+1
|
* added a sample commands.pyhut2015-02-171-0/+53
|
* core.fm: typohut2015-02-171-1/+1
|
* Merge branch 'delete_previewed_file_fix' of https://github.com/Vifon/rangerhut2015-02-171-1/+1
|\
| * core.actions: deleting a file with a cached image preview no longer crashes ↵Wojciech Siewierski2015-02-121-1/+1
| | | | | | | | ranger
* | config/commands: interactive "?" key / ":help" commandhut2015-02-161-8/+14
|/
* Fix renaming with insufficient privilegesAlexander Buddenbrock2015-02-122-4/+6
| | | | | | | | | | | Closes #97 When renaming a file, the internal file pointer will be set to the new file name without checking if the file actually got renamed. This would cause the file pointer to be set to an invalid file if renaming failed because of bad privileges. With no valid file, the previev window will disappear. This patch adds a return value to the core renaming method so it can be checking by the caller. The rename command now checks if the rename succeeded and only then sets the new file pointer.
* fix python version checking with python2.6hut2015-02-106-7/+7
|
* core.fm: give clearer instructions on --copy-confighut2015-02-091-3/+9
|
* proper checking for the python versionhut2015-02-086-7/+7
| | | | | Let's not force python to jump from version 9 straight to 31, just because some silly software did fuzzy version checks :D
* core.loader: fix copy&pasting directory linkshut2015-02-071-1/+1
|
* Merge branch 'patch-1' of https://github.com/bastorran/rangerhut2015-02-071-0/+1
|\
| * remove double dashbastorran2015-02-061-1/+1
| |
| * Add qpdfview to rifle.confbastorran2015-02-061-0/+1
| | | | | | | | | | | | | | | | Hello, there is a less known pdf viewer, called qpdfview. Greetings bastorran
* | Makefile: quote a variablehut2015-02-071-1/+1
| | | | | | | | This avoids an error if the path to rangers repository contains a space.
* | ext.shutil_generatorized: don't follow links in copystathut2015-02-061-1/+1
| | | | | | | | | | | | This avoids error messages when copying broken links, and seems like a sane setting overall. Especially considering that ranger has no option to follow links when copying.
* | ext.shutil_generatorized: fixed #143 (copying of links)hut2015-02-061-5/+6
| | | | | | | | This bug was introduced in a986e2bd...
* | core.loader: don't follow links when calculating sizehut2015-02-061-0/+2
|/
* Merge branch 'tab_switch_realpath' of https://github.com/Vifon/rangerhut2015-02-061-0/+1
|\
| * core.actions: tab_switch uses realpathWojciech Siewierski2015-02-011-0/+1
| | | | | | | | | | This way the different representation of the same path are treated in the same way.
* | doc/ranger.1: clarify vifon's man page changehut2015-02-062-11/+13
| |
* | doc/ranger.1: added some information about the config file loading processWojciech Siewierski2015-02-042-1/+21
| |
* | Merge branch 'bulkrename_flat_fix' of https://github.com/Vifon/rangerhut2015-02-031-1/+3
|\ \
| * | config.commands: bulkrename works with `:flat -1`Wojciech Siewierski2015-02-021-1/+3
| |/ | | | | | | Fixes #241.
* / Fix typovimeitor2015-02-021-1/+1
|/
* Less invasive default parameter.The Flying Rapist2015-01-301-1/+1
|
* Added tab_switch fm action.The Flying Rapist2015-01-301-0/+42
|
* doc/ranger.1: updated man page entry for "sort" optionhut2015-01-292-6/+6
|
* container.directory: added sorting by file extensionWojciech Siewierski2015-01-292-0/+3
|
* config.commands: added ability to create multilevel directories (as mkdir -p ↵Nikolay Puzanov2015-01-281-2/+2
| | | | 1/2/3)
* Merge branch 'master' of https://github.com/Perdu/rangerhut2015-01-200-0/+0
|\ | | | | | | | | Conflicts: ranger/config/rifle.conf
| * Allow $EDITOR to contain spacesCélestin Matte2014-04-281-3/+3
| | | | | | | | | | | | | | | | | | $EDITOR variables consisting of "program name + options" are not handled correctly because of quotes around $EDITOR. As a result, if $EDITOR is not a simple program name (i.e. if it includes options, as in "emacs -nw"), the full string is taken as a program and fails to run. Error message: (/bin/sh: 1: emacs -nw: not found) Removing quotes fixes this problem.
| * Revert "Fix bugs when $EDITOR="emacs -nw""Célestin Matte2014-04-281-3/+3
| | | | | | | | This reverts commit 4275d352a8f588468b88e6719325de753d12ed62.
| * Fix bugs when $EDITOR="emacs -nw"Célestin Matte2014-04-261-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch fixes 2 problems at once in the default config, which prevent one from editing files when his $EDITOR variable is set to "emacs -nw": - $EDITOR variables consisting of "program name + options" are not handled correctly because of quotes around $EDITOR. As a result, if $EDITOR is not a simple program name (i.e. if it includes options, as in "emacs -nw"), the full string is taken as a program and fails to run. Error message: (/bin/sh: 1: emacs -nw: not found) Removing quotes fixes this problem. - emacs does not seems to handle the "--" correctly: it does not open any file when it is there. I don't know why it is there, but removing it does not prevent other editors (vim, nano) to run correctly, and makes emacs work.
* | core.fm: Call default rifle.hook_command_preprocessinghut2015-01-201-1/+2
| |
* | core.actions: fix linemode validity checkhut2015-01-181-2/+4
| |
* | gui.widgets.browsercolumn: Set default value for texthut2015-01-181-0/+1
| | | | | | | | this can avoid crashes