| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
|\ |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
This reverts commit f24817eece19aafba5dd7399c2dd3c212dacf29b.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This reverts commit 8a516820081a317b85c6c2ced7901a4000130bf5.
The commit introduced a feature that already existed; you can simply run
fm.open_console() to change the current line.
Conflicts:
ranger/gui/widgets/console.py
|
| |
| |
| |
| |
| | |
this can be used in commands which temporarily filter the directory,
without disrupting the user-defined filter.
|
| |
| |
| |
| |
| | |
That way, the accept_file function can get whatever information about
the directory it needs.
|
| |
| |
| |
| |
| |
| | |
the code "if hidden_filter in fname" assumes that hidden_filter is a
string, which can never happen since Directory.load_bit_by_bit converts
the string value to a regexp
|
| | |
|
| |
| |
| |
| | |
As requested by Miodrag Milic
|
| |
| |
| |
| | |
as requested by Miodrag Milic
|
| |
| |
| |
| |
| | |
with this feature, commands can overwrite the line after each quick()
call by changing the attribute "self.updated_line".
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
This breaks in python2. Leaving out __init__ in subclasses of
Exceptions is usually fine.
|
| | |
|
| |
| |
| |
| |
| | |
Adds commands to stage, unstage changes, and to display diffs and logs using the
embedded pager.
|
| | |
|
| |
| |
| |
| | |
Data displayed: branch, repo status and summary of last commit.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* I have restructured BrowserColumn._draw_directory. Hopefully it is easier
mantain now. Simplified horizontal space computations, etc.
* Displays two symbols on the right of every entry, showing local status, and
status regarding the remote vcs repo.
* Added the necessary context to be able to change colors for individual
symbols from the colorscheme.
|
| |
| |
| |
| |
| |
| | |
* Makes fsobject aware of vcs.
* Makes directory get vcs status data when loading content.
* Adds a config option to enable/disable the vcs info feature.
|
|/
|
|
| |
Supports git, hg and bzr.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
|
|
|
|
|
|
| |
When you see a non-tagged file in a column other than the main column
and its name is shortened because it doesn't fit into the column, it
would have 1 less character of space available.
The reason is that since it has no tag, a simulated tag with the content
" " is added before the name so it appears to be 1 character longer than
files with tags. This commit fixes that.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Thanks to looper for reporting. Bug report was:
Symlink looses formatting
Details:
Steps to reproduce:
1. Make an empty directory end enter it.
2. Do :touch <some_filename>.
3. Open other tab with any path and copy any file with 'yy'.
4. Swap to previous tab and paste the symlink with 'pl'.
5. The symlink coloured and looks like common file, not like a symlink.
6. Move cursor to the symlink and back to <some_filename> from point 2. Now
the symlink looks as intended.
7. While cursos stays on <some_file>, reload cwd with 'R'. The symlink looks
like common file again.
----
ranger-master 1.5.5
Python 2.7.3 (default, Jan 2 2013, 16:53:07)
[GCC 4.7.2]
|
| |
|
|\ |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
This fixes the bug that when using python3, the title is only set after
exiting ranger.
|
| |
| |
| |
| | |
https://savannah.nongnu.org/bugs/index.php?32687
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
When you deleted a directory and created a file with the same name, it
was treated like a directory, with ranger trying to preview it and
throwing lots of errors. This was because it tried to look for the path
of the currently selected file in fm.directories - a directory cache -
and if a file with the same name existed as a directory once, it would
have found it there.
|
| |
| |
| |
| |
| |
| | |
When you deleted a symlink to a directory and created a normal directory
with the same name, it still appeared a symlink. This commit fixes
that.
|