diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2016-05-28 13:13:55 +0100 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2016-05-28 14:16:46 +0200 |
| commit | 39e089cc057f141ed440635493a041dc321eb2c3 (patch) | |
| tree | c0002f9fc0a5eb9ddc07b334a7a8a66f9d293614 /vis-core.h | |
| parent | a834016170048cf746dcbbbe5755d4ca989c03c0 (diff) | |
| download | vis-39e089cc057f141ed440635493a041dc321eb2c3.tar.gz vis-39e089cc057f141ed440635493a041dc321eb2c3.tar.xz | |
vis: try to reduce number of redraws
This is a not yet successful attempt to reduce terminal flickering
when resizing windows as is for example the case when entering
command mode.
UI related debug output can be enabled with:
$ make CFLAGS=-DDEBUG_UI=1
$ ./vis > log
Diffstat (limited to 'vis-core.h')
| -rw-r--r-- | vis-core.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -197,7 +197,7 @@ void action_reset(Action*); void mode_set(Vis *vis, Mode *new_mode); void window_selection_save(Win *win); -Win *window_new_file(Vis *vis, File *file); +Win *window_new_file(Vis*, File*, enum UiOption); const char *file_name_get(File*); void file_name_set(File*, const char *name); |
