aboutsummaryrefslogtreecommitdiff
path: root/vis.c
diff options
context:
space:
mode:
Diffstat (limited to 'vis.c')
-rw-r--r--vis.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/vis.c b/vis.c
index c075dc5..a6c8aa6 100644
--- a/vis.c
+++ b/vis.c
@@ -981,14 +981,11 @@ static void switchmode_to(Mode *new_mode) {
if (mode->leave)
mode->leave(new_mode);
mode_prev = mode;
- //fprintf(stderr, "%s -> %s\n", mode_prev->name, new_mode->name);
mode = new_mode;
if (mode == config->mode || (mode->name && mode->name[0] == '-'))
statusbar(vis->win);
if (mode->enter)
mode->enter(mode_prev);
- // TODO display mode name somewhere?
-
}
/** ':'-command implementations */