Skip to content

Commit 06dd7a8

Browse files
committed
Fix cursor behaviour during staging
In the status view, when the `Changes to be committed` section is empty, a line with `(no files)` is inserted. This line disappears when the first file is staged, this has to be taken into account for the cursor position. Fixes jonas#842, jonas#1028
1 parent a40f5b5 commit 06dd7a8

File tree

2 files changed

+15
-6
lines changed

2 files changed

+15
-6
lines changed

NEWS.adoc

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Bug fixes:
1212
- Fix search when view is loading.
1313
- Use the full width for diffstat in the stage view.
1414
- Improve escaping of variables in external commands.
15+
- Fix cursor behaviour during staging. (#842, #1028)
1516

1617
tig-2.5.5
1718
---------

src/status.c

+14-6
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333

3434
static char status_onbranch[SIZEOF_STR];
3535
static bool show_untracked_only = false;
36+
static bool no_files_staged;
3637

3738
void
3839
open_status_view(struct view *prev, bool untracked_only, enum open_flags flags)
@@ -161,19 +162,23 @@ status_run(struct view *view, const char *argv[], char status, enum line_type ty
161162

162163
if (!view->line[view->lines - 1].data) {
163164
add_line_nodata(view, LINE_STAT_NONE);
164-
if (type == LINE_STAT_STAGED)
165+
if (type == LINE_STAT_STAGED) {
165166
watch_apply(&view->watch, WATCH_INDEX_STAGED_NO);
166-
else if (type == LINE_STAT_UNSTAGED)
167+
no_files_staged = true;
168+
} else if (type == LINE_STAT_UNSTAGED) {
167169
watch_apply(&view->watch, WATCH_INDEX_UNSTAGED_NO);
168-
else if (type == LINE_STAT_UNTRACKED)
170+
} else if (type == LINE_STAT_UNTRACKED) {
169171
watch_apply(&view->watch, WATCH_INDEX_UNTRACKED_NO);
172+
}
170173
} else {
171-
if (type == LINE_STAT_STAGED)
174+
if (type == LINE_STAT_STAGED) {
172175
watch_apply(&view->watch, WATCH_INDEX_STAGED_YES);
173-
else if (type == LINE_STAT_UNSTAGED)
176+
no_files_staged = false;
177+
} else if (type == LINE_STAT_UNSTAGED) {
174178
watch_apply(&view->watch, WATCH_INDEX_UNSTAGED_YES);
175-
else if (type == LINE_STAT_UNTRACKED)
179+
} else if (type == LINE_STAT_UNTRACKED) {
176180
watch_apply(&view->watch, WATCH_INDEX_UNTRACKED_YES);
181+
}
177182
}
178183

179184
io_done(&io);
@@ -644,6 +649,9 @@ status_update(struct view *view)
644649
return false;
645650
}
646651

652+
if (line->type != LINE_STAT_STAGED && !no_files_staged)
653+
view->pos.lineno += 1;
654+
647655
return true;
648656
}
649657

0 commit comments

Comments
 (0)