| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
| |
Handle exceptions explicitly to prevent unexpected errors from causing
problems.
Improve exception and notification logging.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|\ |
|
| | |
|
| | |
|
|/ |
|
| |
|
|\ |
|
| | |
|
|/ |
|
|
|
|
| |
remove trailing newline
|
| |
|
| |
|
|\ |
|
| |
| |
| |
| |
| | |
Implemented as a Python plugin instead of a bunch of rc.conf lines to
allow easy nested looping.
|
|/ |
|
|
|
| |
Previously RangeChooser() would just fail silently in gvim. With this change, it will open an xterm and open ranger there. Everything else works as before.
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
mktemp on Mac OS X (and probably all BSDs) just returns an error when
invoked without any arguments. The -t option used in this change is
interpreted differently on Mac OS X and Linux, and is deprecated on
Linux, but this invocation works as expected on both.
See discussion at https://unix.stackexchange.com/questions/30091
Another alternative would be to use Python's tempfile module:
https://docs.python.org/2/library/tempfile.html
|
|
|
|
| |
The usage of file.basename could lead to some issues with :flat.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
this fixes the problem that examples/plugin_skip_default_rc doesn't
work, because plugins are loaded after the rc.conf.
|
| |
|
| |
|
| |
|
|
|
|
|
| |
That way, the accept_file function can get whatever information about
the directory it needs.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
PEP 8 (Style Guide for Python Code) suggests the use of 4 spaces:
http://www.python.org/dev/peps/pep-0008/#indentation
If you need to use tools like "git blame", you can use the -w option to
ignore this commit entirely. Patches will continue to work if you
substitute tabs with 4 spaces everywhere except in the Makefile.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Previously, you could change settings in both rc.conf and options.py.
With this commit, options.py is deprecated and you are encouraged to use
rc.conf to change settings. I chose to do this because it is more
elegant to use a simple list of ranger commands for configuration
rather than a python file with lots of magic around it and potential
syntax errors for inexperienced users.
The existing "set" command doesn't evaluate python objects anymore,
instead it always takes strings and converts to the proper type
automatically. This means that the old set command will not work
anymore and you have to update your commands.py if it still uses the old
definition of the "set" command.
This is how to convert your options.py:
old way, in options.py | new way, in rc.conf
---------------------------+------------------------
show_hidden = False | set show_hidden false
sort = 'basename' | set sort basename
column_ratios = (1, 5, 3) | set column_ratios 1,5,3
For backward compatibility, you still can use options.py, but you get a
warning when you start ranger. You can pipe stderr to /dev/null to
silence the warning, or just move your stuff from options.py to rc.conf
and plugins and delete the options.py.
Finally, to extend ranger, which you previously could do through
monkey-patching in options.py, you should now use the plugin system.
This was an experimental, undocumented feature of ranger for some time,
but this and the following commits will imrpove and document it.
You can simply move all the monkey-patching code from options.py to a
*.py file in ~/.config/ranger/plugins/.
|
|
|
|
|
| |
Previously, this would not work if the current working directory is a
symlink.
|
|
I guess a whole directory for examples scales better than having them in
the man page.
|