summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
...
* | Merge branch 'backslash' of https://github.com/stepshal/rangerhut2016-06-2117-44/+44
|\ \
| * | Remove reduntant backslash between brackets.stepshal2016-06-1917-44/+44
| |/
* | Merge branch 'comment' of https://github.com/stepshal/rangerhut2016-06-2110-15/+15
|\ \
| * | Make at least two spaces before inline commentstepshal2016-06-1910-15/+15
| |/
* | comment style fixeshut2016-06-212-7/+7
| | | | | | | | Thanks to stepshal, see #586
* | Merge branch 'membership' of https://github.com/stepshal/rangerhut2016-06-215-8/+8
|\ \
| * | test for membership should be 'not in'stepshal2016-06-195-8/+8
| |/
* | Merge branch 'comparison' of https://github.com/stepshal/rangerhut2016-06-213-4/+4
|\ \
| * | comparison to None should be 'if cond is None:'stepshal2016-06-193-4/+4
| |/
* | Merge branch 'comparison1' of https://github.com/stepshal/rangerhut2016-06-211-3/+3
|\ \
| * | Comparison to True/False should be 'if cond is True/False:' or 'if not cond:'.stepshal2016-06-191-3/+3
| |/
* | core.loader: removed redundant `.readlines()`hut2016-06-211-1/+1
| | | | | | | | Thanks to @Vifon for pointing it out
* | Merge branch 'ambiguous' of https://github.com/stepshal/rangerhut2016-06-211-3/+3
|\ \
| * | Change ambiguous variable name 'l' to 'L'stepshal2016-06-201-3/+3
| |/
* | Merge branch 'E251' of https://github.com/stepshal/rangerhut2016-06-214-16/+16
|\ \
| * | Remove unexpected spaces around keyword / parameter equalsstepshal2016-06-194-16/+16
| |/
* | core.loader: added docstring to Loader classhut2016-06-211-0/+3
| |
* | core.loader: added signals 'loader.{before,after,destroy}'hut2016-06-211-0/+3
|/
* Merge branch 'whitespaces' of https://github.com/stepshal/rangerhut2016-06-183-3/+3
|\
| * Fix whitespacesstepshal2016-06-163-3/+3
| |
* | Merge branch 'W931' of https://github.com/stepshal/rangerhut2016-06-183-3/+0
|\ \
| * | Remove blank lines at end of filestepshal2016-06-163-3/+0
| |/
* | Merge branch 'reduntant' of https://github.com/stepshal/rangerhut2016-06-189-15/+0
|\ \
| * | Remove reduntant blank linesstepshal2016-06-169-15/+0
| |/
* | Merge branch 'E301' of https://github.com/stepshal/rangerhut2016-06-1813-0/+27
|\ \
| * | Add one blank line where is expectedstepshal2016-06-1613-0/+27
| |/
* / Add two blank lines where is expectedstepshal2016-06-1675-0/+145
|/
* Merge branch 'trailing' of https://github.com/stepshal/rangerhut2016-06-132-2/+0
|\
| * doc/tools/print_colors.py: remove trailing newlinestepshal2016-06-072-2/+0
| | | | | | | | remove trailing newline
* | ext.rifle: improve recognition of rxvt terminalshut2016-06-131-0/+6
|/
* Make exactly one space after commastepshal2016-06-066-10/+10
| | | | Update commands.py
* Remove space before/after bracketstepshal2016-06-063-6/+6
|
* Remove trailing spacestepshal2016-06-061-1/+1
|
* Added keybindings <A-Left>, <A-Right> to move word-wisehut2016-06-062-1/+73
|
* core.actions: fix wrong check for return value of tab.enter_dirhut2016-06-061-1/+1
|
* examples/plugin_new_macro.py: fix spaceshut2016-06-021-3/+3
|
* added CONTRIBUTING.mdhut2016-05-271-0/+15
| | | | this will be linked in github when users open PRs or issues
* Remove redundant checkmrogalski2016-05-241-2/+0
|
* widgets.browsercolumn: update commenthut2016-05-241-9/+1
| | | | Related to #546
* merge setting "relative_line_numbers" into "line_numbers"hut2016-05-245-20/+20
| | | | | | | line_numbers now takes a string rather than a bool, with the valid values "false", "absolute" and "relative". Related to #546
* Merge branch 'linum' of https://github.com/mrogalski/rangerhut2016-05-245-2/+70
|\
| * Add man description.Mark Rogalski2016-05-162-1/+17
| |
| * Disable line numbering by defaultMark Rogalski2016-05-161-0/+4
| |
| * Delete the directory color attr for line numberMark Rogalski2016-05-161-1/+1
| |
| * Set linum_text_len to digits of visible filesMark Rogalski2016-05-161-4/+2
| | | | | | | | | | | | | | This is changed back from the amount of number of digits in number of files in directory. Computing proper relative line numbers requires recalculation of line numbers for each line (even for cached lines), so there will be no visible ragged line numbers with this setting.
| * Add comment with line num implementation rationaleMark Rogalski2016-05-161-0/+10
| |
| * Add relative line numbersMark Rogalski2016-05-162-2/+19
| |
| * Create the linum_format just onceMark Rogalski2016-05-161-3/+3
| |
| * Add self.settings.line_numbers to keyMark Rogalski2016-05-161-1/+2
| | | | | | | | | | This avoids badly cached display_data when changing the setting in a running program.
| * Fix off-by-one error in space calculationMark Rogalski2016-05-161-1/+7
| |