aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/misc1.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/misc1.c')
-rw-r--r--src/nvim/misc1.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/nvim/misc1.c b/src/nvim/misc1.c
index 7a53775cbc..44ea895a47 100644
--- a/src/nvim/misc1.c
+++ b/src/nvim/misc1.c
@@ -437,13 +437,3 @@ done:
xfree(tempname);
return buffer;
}
-
-/*
- * Return TRUE when need to go to Insert mode because of 'insertmode'.
- * Don't do this when still processing a command or a mapping.
- * Don't do this when inside a ":normal" command.
- */
-int goto_im(void)
-{
- return p_im && stuff_empty() && typebuf_typed();
-}