summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* prettier screenshothut2014-10-201-0/+0
|
* README: added a screenshothut2014-10-202-0/+2
|
* ranger.pod: Added IRC channel to manpagehut2014-10-152-1/+5
|
* gui.widgets.console: validate keys before adding to unicode_bufferhut2014-10-151-13/+14
| | | | | | | This, along with the previos commit, helps with a bug that GermainZ reported: If you press CTRL+Left Arrow when using ranger on python3, you become unable to type new letter keys because ranger tries to interpret all the input as a unicode sequence.
* gui.widgets.console: clear unicode_buffer when len >= 4hut2014-10-152-0/+3
|
* rifle.py: expand environment variables in "has" functionhut2014-10-111-1/+6
|
* added doc/ranger.1.html to .gitignorehut2014-10-031-0/+1
|
* added doc/release-checklist.txthut2014-10-031-0/+27
|
* Added redrawing when we return to Vim from Ranger without opening anyAshwin Nanjappa2014-09-191-0/+2
| | | | file.
* Commands "yp", "yd", "yn" now copy to X11 clipboard selection too.Веремеенко Артём2014-09-021-3/+3
|
* container.directory: implemented random sortinghut2014-08-265-8/+11
|
* change the bug tracker URLhut2014-08-224-4/+4
|
* fix sorting by size in some corner casehut2014-08-221-1/+1
| | | | see https://savannah.nongnu.org/bugs/index.php?42736
* added dwb to the list of browsershut2014-08-221-0/+1
|
* fix references to README.mdhut2014-08-225-7/+7
|
* Restored original rename mapping and added renameConsole under 'a'.rukai2014-08-191-1/+2
|
* Fixed renameConsole usage in documentation.rukai2014-08-181-1/+1
|
* Mapped renameConsole to 'A'rukai2014-08-171-1/+1
|
* Added renameConsole a command which automatically creates a console for the ↵rukai2014-08-171-0/+12
| | | | rename command and places the cursor before the file extension.
* config/rc.conf: don't use the obsolete -d flaghut2014-07-231-14/+14
|
* optimized README.md for githubhut2014-07-231-3/+2
|
* rename README to README.mdhut2014-07-231-0/+0
| | | | | This way, github treats the README as a markdown file and displays it nicely.
* fix crash in sha encode of previewsNathan Typanski2014-06-111-0/+3
| | | | | | | | | | | | | | | When opening certain filetypes, for which Ranger can't render a preview (they appear as 0 bytes), Ranger will crash on the sha1_encode: Traceback (most recent call last): File "~/ranger/ranger/core/main.py", line 139, in main cacheimg = os.path.join(ranger.CACHEDIR, self.sha1_encode(path)) File "~/ranger/ranger/core/actions.py", line 821, in sha1_encode sha1(path.encode('utf-8')).hexdigest()) + '.jpg' AttributeError: 'NoneType' object has no attribute 'encode' This solves that by checking at the beginning of get_preview() that `file.realpath` is not None, and returning early if it is None.
* added MATE edition of image and PDF viewerZoran Plesivčak2014-06-011-0/+3
|
* Fix cdpath commit, which was broken in several waysAbdo Roig-Maranges2014-05-031-9/+5
| | | | | | | | | | | | This fixes commit 04681ff7ceb8a as follows: - check when cdpath is None. Otherwise split fails on None objects and causes ranger to crashes when CDPATH is not set in the environment. - actually set cdpath variable in the lowercase case. Before it was not assigned to any variable. - join paths with os.path.join instead of concatenating with '/'.
* Merge remote-tracking branch 'perdu/CDPATH'hut2014-04-291-0/+12
|\
| * Handle CDPATHCélestin Matte2014-04-281-0/+12
| | | | | | | | | | | | This shell feature allows one to cd directly to remote directories located in paths defined in the variable. Allow handling of such variable in ranger. Compatible with: bash, ksh, zsh, csh, and possibly others.
* | Merge remote-tracking branch 'perdu/patch_editor'hut2014-04-281-3/+3
|\ \
| * | 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.
* / doc/ranger.1: Added more key bindings to the man pagehut2014-04-282-3/+93
|/
* core.actions: Enhanced :tab_new so you can type 5<C-n>hut2014-04-231-3/+4
|
* core.actions: Enhanced :tab_move so you can type 5gthut2014-04-231-1/+3
|
* Merge remote-tracking branch 'potato/fix'hut2014-04-231-1/+1
|\
| * Fix an erroneous function callEmanuel Guevel2014-04-131-1/+1
| |
* | Workaround in py3.4.0 for swapped x/y in curses addch()hut2014-04-232-2/+7
|/ | | | | See http://bugs.python.org/issue21088, https://github.com/hut/ranger/issues/122
* Turn "automatically_count_files" on by defaulthut2014-04-111-1/+1
|
* Merge remote-tracking branch 'taylorchu/master'hut2014-04-111-1/+4
|\
| * improve keyerror fixtaylorchu2014-04-051-1/+4
| |
| * fix keyerror when updated_preview is calledtaylorchu2014-04-051-1/+1
| |
* | rebuilt man pagehut2014-04-111-0/+8
| |
* | Add setting "automatically_count_files"hut2014-04-116-4/+27
| |
* | ext.img_display: fixed ImageDisplayer.quit when crashing in initializehut2014-03-191-1/+1
|/
* Merge remote-tracking branch 'germain/w3m-previews' into w3m-previewshut2014-03-127-6/+54
|\
| * Add extensionGermainZ2014-03-091-2/+4
| |
| * Python2 fix for utf-8 characters in file pathsGermainZ2014-03-091-1/+9
| |
| * Update rc.confGermainZ2014-03-091-1/+1
| |
| * Disable video image previews by defaultGermainZ2014-03-091-2/+3
| |
| * Allow scope.sh to be used for image previewsGermainZ2014-03-096-5/+42
| |
* | gui.widgets/taskview: Higher precision in progressbarhut2014-03-071-1/+1
| |
* | ext.img_display: fix misplacement of image in previous commithut2014-02-171-0/+3
| | | | | | | | Thanks to majutsushi, see https://github.com/hut/ranger/issues/109