Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | core.metadata: data of files with empty metadata is not stored | Wojciech Siewierski | 2015-01-17 | 1 | -0/+10 | |
| | ||||||
* | core.metadata: added another TODO entry | hut | 2015-01-17 | 1 | -0/+1 | |
| | ||||||
* | core.metadata: add some TODO entries | hut | 2015-01-17 | 1 | -0/+3 | |
| | ||||||
* | core.metadata: delete keys if value is empty | hut | 2015-01-17 | 1 | -0/+5 | |
| | ||||||
* | core.metadata: use DefaultOpenStruct instead of OpenStruct | hut | 2015-01-17 | 1 | -4/+4 | |
| | ||||||
* | core.metadata: use basenames by default | hut | 2015-01-17 | 1 | -2/+4 | |
| | ||||||
* | core.metadata: works well now, at first glance | hut | 2015-01-17 | 1 | -106/+64 | |
| | ||||||
* | core.metadata: added comments for self.meta{file,data}_cache | hut | 2015-01-17 | 1 | -0/+2 | |
| | ||||||
* | started porting core.metadata from csv to json | hut | 2015-01-17 | 1 | -12/+24 | |
| | ||||||
* | adapted commands for MetadataManager | hut | 2015-01-16 | 1 | -2/+2 | |
| | ||||||
* | start turning ext.papermanager to core.metadata | hut | 2015-01-13 | 3 | -6/+170 | |
| | ||||||
* | update email address | hut | 2014-12-11 | 8 | -8/+8 | |
| | ||||||
* | core.fm: move a signal binding to a more sensible spot | hut | 2014-12-09 | 1 | -3/+4 | |
| | ||||||
* | Merge branch 'fix-popen-shell' of https://github.com/amerlyq/ranger | hut | 2014-12-05 | 1 | -0/+4 | |
|\ | ||||||
| * | Fixed runner to use system SHELL env in ':shell' command | Amerlyq | 2014-11-22 | 1 | -0/+4 | |
| | | ||||||
* | | Merge branch 'flat_command' of https://github.com/tex/ranger | hut | 2014-12-05 | 1 | -7/+3 | |
|\ \ | | | | | | | | | | | | | | | | Conflicts: ranger/container/fsobject.py ranger/gui/widgets/browsercolumn.py | |||||
| * | | fixes to flat command | Milan Svoboda | 2014-11-22 | 1 | -7/+3 | |
| |/ | ||||||
* | | core.actions: make the hardcoded linemode check more dynamic | hut | 2014-12-05 | 1 | -2/+3 | |
| | | ||||||
* | | config/commands.py: added :default_linemode command | hut | 2014-12-05 | 1 | -0/+1 | |
| | | ||||||
* | | core.fm: propagate papermanager_deep_search setting | hut | 2014-12-03 | 1 | -0/+3 | |
| | | ||||||
* | | reset papermanager cache when resetting fm | hut | 2014-12-03 | 1 | -0/+2 | |
| | | ||||||
* | | rename "title" linemode to "papertitle" | hut | 2014-12-03 | 1 | -2/+2 | |
| | | ||||||
* | | core.actions: map linemode "normal" to "filemode" | hut | 2014-12-03 | 1 | -4/+8 | |
| | | ||||||
* | | properly redraw | hut | 2014-12-03 | 1 | -0/+4 | |
| | | ||||||
* | | implement a paper manager | hut | 2014-12-03 | 1 | -0/+2 | |
| | | ||||||
* | | implement "permissions" linemode | hut | 2014-12-03 | 1 | -2/+2 | |
| | | ||||||
* | | allow setting a "linemode" for each file/directory | hut | 2014-12-03 | 1 | -0/+36 | |
|/ | ||||||
* | core.actions: Avoid UnicodeDecodeError, fixes #172 | hut | 2014-11-02 | 1 | -1/+2 | |
| | | | | Thanks to cym13 and GermainZ for looking into this | |||||
* | implement flat command | Milan Svoboda | 2014-11-01 | 1 | -3/+7 | |
| | ||||||
* | core.actions: fixed _MacroTemplate.idpattern | hut | 2014-10-26 | 1 | -0/+1 | |
| | | | | | Thanks to trupanka for pointing out the problem at https://github.com/hut/ranger/issues/175 | |||||
* | change the bug tracker URL | hut | 2014-08-22 | 1 | -1/+1 | |
| | ||||||
* | fix crash in sha encode of previews | Nathan Typanski | 2014-06-11 | 1 | -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. | |||||
* | Fix cdpath commit, which was broken in several ways | Abdo Roig-Maranges | 2014-05-03 | 1 | -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 '/'. | |||||
* | Handle CDPATH | Célestin Matte | 2014-04-28 | 1 | -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. | |||||
* | core.actions: Enhanced :tab_new so you can type 5<C-n> | hut | 2014-04-23 | 1 | -3/+4 | |
| | ||||||
* | core.actions: Enhanced :tab_move so you can type 5gt | hut | 2014-04-23 | 1 | -1/+3 | |
| | ||||||
* | Fix an erroneous function call | Emanuel Guevel | 2014-04-13 | 1 | -1/+1 | |
| | ||||||
* | Merge remote-tracking branch 'germain/w3m-previews' into w3m-previews | hut | 2014-03-12 | 2 | -4/+40 | |
|\ | ||||||
| * | Add extension | GermainZ | 2014-03-09 | 1 | -2/+4 | |
| | | ||||||
| * | Python2 fix for utf-8 characters in file paths | GermainZ | 2014-03-09 | 1 | -1/+9 | |
| | | ||||||
| * | Allow scope.sh to be used for image previews | GermainZ | 2014-03-09 | 2 | -4/+30 | |
| | | ||||||
* | | Merge branch 'master' of https://github.com/pkkm/ranger | hut | 2014-02-15 | 1 | -1/+1 | |
|\ \ | ||||||
| * | | Strip leading whitespace when parsing config | Paweł Kraśnicki | 2013-12-22 | 1 | -1/+1 | |
| | | | ||||||
* | | | fix improper display of disk free size on os x | introom | 2013-12-28 | 1 | -1/+1 | |
|/ / | ||||||
* | | core.actions: add numerical argument to toggle_visual_mode | hut | 2013-08-17 | 1 | -1/+3 | |
| | | ||||||
* | | core.actions: better numerical argument to "mark_files" | hut | 2013-08-17 | 1 | -1/+6 | |
| | | ||||||
* | | Changed email address in source code | hut | 2013-08-08 | 8 | -8/+8 | |
| | | | | | | | | | | Since lavabit.com ceased providing email services, I had to change my address from hut lavabit com to hut lepus uberspace de. | |||||
* | | Merge branch 'efficient_w3mimgpreview' | hut | 2013-07-28 | 1 | -0/+5 | |
|\ \ | |/ |/| | ||||||
| * | core.fm: draw images later | hut | 2013-04-24 | 1 | -0/+2 | |
| | | ||||||
| * | ext.img_display: more efficient way to draw images | hut | 2013-04-24 | 1 | -0/+3 | |
| | | | | | | | | | | | | | | | | Instead of loading up w3mimgdisplay for each image and killing it afterwards, we just open it once for the first image and keep it open. It can receive any number of commands, so we can just keep writing them into stdin. Perhaps it even caches the images to save time, I didn't test that yet. |