xaizek / vifm (License: GPLv2+) (since 2018-12-07)
Vifm is a file manager with curses interface, which provides Vi[m]-like environment for managing objects within file systems, extended with some useful ideas from mutt.
Commit 31171936614a46e18927da676aea50a232af663e

Fix inactive mark (*) not being drawn sometimes
Caused by 1a5a0571c37cdc81fcfeb7cba763844cd9591320:

Fix item not being redrawn on selection toggle

Using `t` key didn't update the state of the item on the screen.
Author: xaizek
Author date (UTC): 2019-07-28 20:50
Committer name: xaizek
Committer date (UTC): 2019-07-28 20:50
Parent(s): d140873b94578f6e326aa16be3204eb6f2a5559c
Signing key: 99DC5E4DB05F6BE2
Tree: 41c0cb48e9c1dcdd42f85b212af92bdd1e8474bf
File Lines added Lines deleted
src/ui/fileview.c 12 5
File src/ui/fileview.c changed (mode: 100644) (index 6af8974f9..cf5f5610e)
... ... fview_cursor_redraw(view_t *view)
829 829
830 830 /* Always redrawing the cell won't hurt and will account for the case when /* Always redrawing the cell won't hurt and will account for the case when
831 831 * selection state of item under the cursor has changed. */ * selection state of item under the cursor has changed. */
832 if(!ui_view_displays_columns(view))
832 if(view == other_view)
833 833 { {
834 /* Inactive cell in ls-like view usually takes less space than an active
835 * one. Need to clear the cell before drawing over it. */
836 redraw_cell(view, view->top_line, view->curr_line, 0);
834 fview_draw_inactive_cursor(view);
835 }
836 else
837 {
838 if(!ui_view_displays_columns(view))
839 {
840 /* Inactive cell in ls-like view usually takes less space than an active
841 * one. Need to clear the cell before drawing over it. */
842 redraw_cell(view, view->top_line, view->curr_line, 0);
843 }
844 redraw_cell(view, view->top_line, view->curr_line, 1);
837 845 } }
838 redraw_cell(view, view->top_line, view->curr_line, 1);
839 846 } }
840 847
841 848 void void
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/vifm

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/vifm

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master