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 15c67c87c3ff583ed0c24afd89ae7a2fa9141e14

Rename local variable tmp -> saved_vi
Not related to packaging, but `tmp` is a bad name for variable
(neither descriptive nor helpful).
Author: xaizek
Author date (UTC): 2012-10-22 11:47
Committer name: xaizek
Committer date (UTC): 2012-10-22 12:01
Parent(s): 3e1be3e981687fe018f506a2364400e2549989da
Signing key:
Tree: 900185447cf47e6f734a061108288c8038958b7a
File Lines added Lines deleted
src/modes/view.c 2 2
File src/modes/view.c changed (mode: 100644) (index bc242d697..a62fe1bfb)
... ... view_post(void)
346 346 void void
347 347 view_redraw(void) view_redraw(void)
348 348 { {
349 view_info_t *tmp = vi;
349 view_info_t *saved_vi = vi;
350 350
351 351 if(lwin.explore_mode) if(lwin.explore_mode)
352 352 { {
 
... ... view_redraw(void)
366 366 draw(); draw();
367 367 } }
368 368
369 vi = tmp;
369 vi = saved_vi;
370 370 } }
371 371
372 372 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