aboutsummaryrefslogtreecommitdiff
path: root/vis-lua.c
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2017-06-12 18:27:30 +0200
committerMarc André Tanner <mat@brain-dump.org>2017-06-15 15:51:43 +0200
commit742fb8b4c39d3278227a25ab7723c0f72bbca552 (patch)
tree4a4e50f4eeebc4348904e44df0a77f39329bc4d3 /vis-lua.c
parenta91e705dfd9b7358bf24e02312dfb06ab3e6848d (diff)
downloadvis-742fb8b4c39d3278227a25ab7723c0f72bbca552.tar.gz
vis-742fb8b4c39d3278227a25ab7723c0f72bbca552.tar.xz
view: rename view_cursors_number
Diffstat (limited to 'vis-lua.c')
-rw-r--r--vis-lua.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vis-lua.c b/vis-lua.c
index a78a866..daf7d30 100644
--- a/vis-lua.c
+++ b/vis-lua.c
@@ -82,7 +82,7 @@ static void window_status_update(Vis *vis, Win *win) {
int cursor_count = view_selections_count(view);
if (cursor_count > 1) {
Cursor *c = view_selections_primary_get(view);
- int cursor_number = view_cursors_number(c) + 1;
+ int cursor_number = view_selections_number(c) + 1;
snprintf(right_parts[right_count], sizeof(right_parts[right_count])-1,
"%d/%d", cursor_number, cursor_count);
right_count++;
@@ -1859,7 +1859,7 @@ static int window_cursor_index(lua_State *L) {
}
if (strcmp(key, "number") == 0) {
- lua_pushunsigned(L, view_cursors_number(cur)+1);
+ lua_pushunsigned(L, view_selections_number(cur)+1);
return 1;
}