summary refs log tree commit diff stats
path: root/ranger
Commit message (Collapse)AuthorAgeFilesLines
* Merge remote-tracking branch 'klinke/CR_scout_fix'hut2014-10-231-1/+4
|\
| * fixed indentation widthKlinkenstecker2014-10-221-5/+5
| |
| * pressing <CR> directly after scout -ek doesn't delete the completeKlinke6002014-10-011-2/+5
| | | | | | | | console line anymore
* | Merge branch 'master' of https://github.com/tannhuber/rangerhut2014-10-211-0/+132
|\ \
| * | Solarized colorscheme added.Joseph Tannhuber2014-05-111-0/+132
| | |
* | | Merge branch 'doc-fix-ref-for-colorscheme' of https://github.com/blueyed/rangerhut2014-10-211-3/+2
|\ \ \
| * | | doc: fix reference for colorscheme configDaniel Hahler2014-10-201-3/+2
| | | |
* | | | Merge branch 'selection_in_titlebar' of https://github.com/Klinkenstecker/rangerhut2014-10-213-1/+6
|\ \ \ \ | |/ / / |/| | |
| * | | New show_selection_in_titlebar settingKlinke6002014-10-013-1/+6
| | |/ | |/|
* | | 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
|/ /
* | Commands "yp", "yd", "yn" now copy to X11 clipboard selection too.Веремеенко Артём2014-09-021-3/+3
| |
* | container.directory: implemented random sortinghut2014-08-262-1/+4
| |
* | change the bug tracker URLhut2014-08-221-1/+1
| |
* | 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-221-1/+1
| |
* | 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
| |
* | 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.
* | 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.
* 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
| |
* | Add setting "automatically_count_files"hut2014-04-113-2/+12
| |
* | 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
* | ext.image_display: new _get_font_dimensions implementation (broken)hut2014-02-161-0/+9
| | | | | | | | | | | | | | | | | | | | | | This allows drawing of images in gnome_terminal and tmux. It is currently broken, since the image is drawn at the wrong place. Thanks to CasperVector, joehillen, majutsushi and progandy for the patch and corrections. See https://github.com/hut/ranger/issues/109 and https://savannah.nongnu.org/bugs/?40888
* | container.settings: sort ALLOWED_SETTINGS alphabeticallyhut2014-02-151-4/+4
| |
n134'>134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164