Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | VCS: Implement vcs.track | nfnty | 2016-02-08 | 4 | -35/+32 | |
| | | ||||||
| * | VCS: Handle repodir paths | nfnty | 2016-02-08 | 3 | -18/+32 | |
| | | ||||||
| * | VCS: Implement cheap subpath repo updating | nfnty | 2016-02-08 | 6 | -35/+49 | |
| | | ||||||
| * | VCS: Implement directory statuses properly, Change function names | nfnty | 2016-02-08 | 5 | -21/+40 | |
| | | ||||||
| * | VCS: Return all statuses (including ignored) from get_status_allfiles | nfnty | 2016-02-08 | 2 | -56/+25 | |
| | | ||||||
| * | VCS: Fix imports | nfnty | 2016-02-08 | 6 | -22/+14 | |
| | | ||||||
| * | VCS: Ignore whole directory if all subpaths are ignored | nfnty | 2016-02-08 | 2 | -3/+11 | |
| | | ||||||
| * | VCS: Change vcsfilestatus to vcspathstatus, Fix remotestatus | nfnty | 2016-02-08 | 6 | -11/+15 | |
| | | ||||||
| * | VCS: Git | nfnty | 2016-02-08 | 10 | -465/+362 | |
| | | ||||||
| * | VCS: Fix _path_contains | nfnty | 2016-02-08 | 1 | -2/+1 | |
| | | ||||||
| * | VCS: Refactor get_status_allfiles, get_ignore_allfiles | nfnty | 2016-02-08 | 1 | -29/+32 | |
| | | | | | | | | | | Use NUL separated output Update _git_file_status | |||||
* | | Merge branch 'iterm-tmux-image-support' of https://github.com/a-morales/ranger | hut | 2016-02-28 | 1 | -3/+10 | |
|\ \ | ||||||
| * | | update Iterm2 ImageDisplayer to work within tmux | a-morales | 2016-01-29 | 1 | -3/+10 | |
| | | | ||||||
* | | | container.history: fixed rebase() unit test | hut | 2016-02-28 | 2 | -6/+26 | |
| | | | ||||||
* | | | Makefile: Don't fail build when py.test is not installed | hut | 2016-02-28 | 1 | -1/+8 | |
| | | | ||||||
* | | | Merge branch 'add_tests' of https://github.com/charignon/ranger | hut | 2016-02-28 | 10 | -16/+166 | |
|\ \ \ | ||||||
| * | | | bookmark: replace delete by __delitem__ for consistency with other methods | Laurent Charignon | 2016-01-31 | 2 | -10/+8 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | We are already using the python magic methods __setitem__, __getitem__, __contains__ and __iter__. It makes sense to use __delitem__ and not have a custom method name for removing bookmarks. We change the only place where this method is called in the code. | |||||
| * | | | bookmarks: add test | Laurent Charignon | 2016-01-31 | 1 | -0/+52 | |
| | | | | ||||||
| * | | | bookmarks: add __delitem__ implementation | Laurent Charignon | 2016-01-31 | 1 | -0/+3 | |
| | | | | ||||||
| * | | | bookmarks: add missing initialization of original_dict | Laurent Charignon | 2016-01-31 | 1 | -0/+1 | |
| | | | | ||||||
| * | | | gitignore: add pytestdebug.log | Laurent Charignon | 2016-01-31 | 1 | -0/+1 | |
| | | | | ||||||
| * | | | history: fix logic error and add test for all the methods | Laurent Charignon | 2016-01-31 | 2 | -3/+97 | |
| | | | | ||||||
| * | | | history: cleanup two unused methods | Laurent Charignon | 2016-01-31 | 1 | -6/+0 | |
| | | | | ||||||
| * | | | history: fix maxlen is defined as an optional argument even if it is not one | Laurent Charignon | 2016-01-31 | 1 | -0/+1 | |
| | | | | | | | | | | | | | | | | We now throw an assert is someone forgets to specify maxlen | |||||
| * | | | tests: add a dummy pytest test and add it to the make test step | Laurent Charignon | 2016-01-31 | 5 | -0/+6 | |
| | |/ | |/| | ||||||
* | | | python2 compatibility for previous commit | hut | 2016-02-24 | 1 | -1/+6 | |
| | | | ||||||
* | | | ranger.__init__: avoid crashing when opening LOGFILE | hut | 2016-02-24 | 1 | -1/+5 | |
| | | | ||||||
* | | | rebuild man pages | hut | 2016-02-24 | 2 | -6/+14 | |
| | | | ||||||
* | | | doc/ranger.1: add example for setintag | hut | 2016-02-24 | 1 | -0/+5 | |
| | | | ||||||
* | | | config/rc.conf: fix yp/yn/yd keybindings | hut | 2016-02-14 | 1 | -3/+3 | |
| | | | ||||||
* | | | config.commands: removed defunct "less %f" shortcut | hut | 2016-02-11 | 1 | -2/+0 | |
| | | | | | | | | | | | | | | | | | | this used to do a "!-p cat %f" when you only typed "!-p". Since this is not documented anywhere and currently defunct, I chose to remove the code entirely. | |||||
* | | | config.commands: removed doubled macro expansion in :shell | hut | 2016-02-11 | 1 | -2/+0 | |
| | | | | | | | | | | | | | | | | | | | | | Previously, `:shell echo %%f` was expanded to `:shell echo <filename>` rather than `:shell echo %f`. To include a literal % in a shell command, you'd have to write `:shell echo %%%%` instead of just `:shell echo %%`. | |||||
* | | | ext.rifle: don't complain about empty lines in rifle.conf | hut | 2016-02-10 | 1 | -2/+2 | |
| | | | ||||||
* | | | ext.rifle: fix line numbers in error messages | hut | 2016-02-10 | 1 | -2/+2 | |
|/ / | ||||||
* / | bookmarks: fix issue #447 Bookmarks aren't updated on renaming | Laurent Charignon | 2016-01-30 | 1 | -0/+8 | |
|/ | ||||||
* | Revert "Use setuptools if present" | hut | 2016-01-25 | 2 | -8/+2 | |
| | | | | | | | | | This reverts commit 8b958c577a7f5f484db42b7c26b0340e14fd9351. Reasons: 1. it breaks the `. ranger` command (fixes #454) 2. the `ranger.desktop` file is not installed properly 3. ranger won't run when installing it outside of PYTHONPATH | |||||
* | added ranger.desktop file, fixes #346 | hut | 2016-01-25 | 2 | -0/+11 | |
| | ||||||
* | HACKING: document the COMPAT convention | hut | 2016-01-24 | 1 | -0/+4 | |
| | ||||||
* | core.actions: added "COMPAT" comment to stick to conventions | hut | 2016-01-24 | 1 | -1/+1 | |
| | ||||||
* | Restore :delete backward compatiblity | Wojciech Siewierski | 2016-01-24 | 1 | -1/+4 | |
| | ||||||
* | Move some :delete logic to fm.delete, further refactoring | Wojciech Siewierski | 2016-01-24 | 2 | -23/+19 | |
| | ||||||
* | :delete refactoring | Wojciech Siewierski | 2016-01-24 | 2 | -28/+20 | |
| | | | | | | | Fixes #458. It also fixes the issue where fm.copy_buffer was not properly cleaned up when fm.delete was called with arguments. | |||||
* | core.actions: in delete(), renamed "narg" to "files" | hut | 2016-01-24 | 1 | -3/+3 | |
| | ||||||
* | Allow :delete to take arguments | Wojciech Siewierski | 2016-01-24 | 2 | -21/+46 | |
| | | | | Issue #458 still applies. | |||||
* | config/commands.py: Reduce code duplication in :delete | Wojciech Siewierski | 2016-01-23 | 1 | -9/+9 | |
| | ||||||
* | README: updated compatible python version numbers | hut | 2016-01-20 | 1 | -1/+1 | |
| | ||||||
* | img_display: added TODO entry about removing FileManagerAware | hut | 2016-01-18 | 1 | -0/+2 | |
| | ||||||
* | ext.img_display: Autodetect w3mimgdisplay location | hut | 2016-01-18 | 1 | -28/+41 | |
| | ||||||
* | config/rc.conf: keybinding 'zi' now toggles preview_images | hut | 2016-01-08 | 1 | -1/+2 | |
| | | | | renamed old "zi" binding for toggling flushinput to "zI". | |||||
* | widgets.pager: fix 'G' key in streams, fixes #74 | hut | 2016-01-04 | 1 | -4/+13 | |
| | | | | | Thanks to genkimarhsall for helping me in https://github.com/hut/ranger/issues/74 |