aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/terminal.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/terminal.c')
-rw-r--r--src/nvim/terminal.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/nvim/terminal.c b/src/nvim/terminal.c
index 5d1bd09a6c..b50ab4ddb0 100644
--- a/src/nvim/terminal.c
+++ b/src/nvim/terminal.c
@@ -160,13 +160,13 @@ struct terminal {
};
static VTermScreenCallbacks vterm_screen_callbacks = {
- .damage = term_damage,
- .moverect = term_moverect,
- .movecursor = term_movecursor,
+ .damage = term_damage,
+ .moverect = term_moverect,
+ .movecursor = term_movecursor,
.settermprop = term_settermprop,
- .bell = term_bell,
+ .bell = term_bell,
.sb_pushline = term_sb_push, // Called before a line goes offscreen.
- .sb_popline = term_sb_pop,
+ .sb_popline = term_sb_pop,
};
static Set(ptr_t) invalidated_terminals = SET_INIT;