From 19c22cdb80e30711be5af33cb6726566ad629944 Mon Sep 17 00:00:00 2001 From: Jack Danger Canty Date: Mon, 19 Jan 2015 22:21:14 -0800 Subject: "halfway a line" is a very confusing phrase If you Google for this phrase found in the Vim documentation you'll find almost exclusively hits from the Vim documentation. I think changing "halfway a line" to "halfway through a line" makes more sense. There seems to be an pervasive odd use of the word 'halfway' in the original docs which I'm updating everywhere. --- src/nvim/edit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/nvim/edit.c') diff --git a/src/nvim/edit.c b/src/nvim/edit.c index f6ca11761a..03dceaf092 100644 --- a/src/nvim/edit.c +++ b/src/nvim/edit.c @@ -766,8 +766,8 @@ edit ( #ifdef UNIX do_intr: #endif - /* when 'insertmode' set, and not halfway a mapping, don't leave - * Insert mode */ + // when 'insertmode' set, and not halfway through a mapping, don't leave + // Insert mode if (goto_im()) { if (got_int) { (void)vgetc(); /* flush all buffers */ -- cgit