]> granicus.if.org Git - vim/commitdiff
patch 8.2.0604: :startinsert in a terminal window used later v8.2.0604
authorBram Moolenaar <Bram@vim.org>
Sun, 19 Apr 2020 16:13:19 +0000 (18:13 +0200)
committerBram Moolenaar <Bram@vim.org>
Sun, 19 Apr 2020 16:13:19 +0000 (18:13 +0200)
Problem:    :startinsert in a terminal window used later.
Solution:   Ignore :startinsert in a terminal window. (closes #5952)

src/ex_docmd.c
src/testdir/test_terminal.vim
src/version.c

index 5c18b0bccc812a8ee1450f9ca609e52c819b98d0..e2d771e194dbc63d446c909fc2fcc19c30f47644 100644 (file)
@@ -7750,6 +7750,11 @@ ex_startinsert(exarg_T *eap)
            curwin->w_cursor.lnum = 1;
        set_cursor_for_append_to_line();
     }
+#ifdef FEAT_TERMINAL
+    // Ignore this when running in an active terminal.
+    if (term_job_running(curbuf->b_term))
+       return;
+#endif
 
     // Ignore the command when already in Insert mode.  Inserting an
     // expression register that invokes a function can do this.
index 7b92774755f525bbf2aa0e76964f3202e24159bf..549fdd16f7db9409b751c88b0193a154df19fd07 100644 (file)
@@ -2612,4 +2612,26 @@ func Test_term_nasty_callback()
   set hidden&
 endfunc
 
+func Test_term_and_startinsert()
+  CheckRunVimInTerminal
+  CheckUnix
+
+  let lines =<< trim EOL
+     put='some text'
+     term
+     startinsert
+  EOL
+  call writefile(lines, 'XTest_startinsert')
+  let buf = RunVimInTerminal('-S XTest_startinsert', {})
+
+  call term_sendkeys(buf, "exit\r")
+  call WaitForAssert({-> assert_equal("some text", term_getline(buf, 1))})
+  call term_sendkeys(buf, "0l")
+  call term_sendkeys(buf, "A<\<Esc>")
+  call WaitForAssert({-> assert_equal("some text<", term_getline(buf, 1))})
+
+  call StopVimInTerminal(buf)
+  call delete('XTest_startinsert')
+endfunc
+
 " vim: shiftwidth=2 sts=2 expandtab
index c2e492887b7f7353d68e8e093ee07b871d1be6bb..89021265abb4fbac92daf2186b6119fec14b874c 100644 (file)
@@ -746,6 +746,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    604,
 /**/
     603,
 /**/