comparison src/tag.c @ 16142:570a296aa0b4 v8.1.1076

patch 8.1.1076: file for Insert mode is much too big commit https://github.com/vim/vim/commit/7591bb39d58ece38a5fef984a08ea9012616c1f9 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Mar 30 13:53:47 2019 +0100 patch 8.1.1076: file for Insert mode is much too big Problem: File for Insert mode is much too big. Solution: Split off the code for Insert completion. (Yegappan Lakshmanan, closes #4044)
author Bram Moolenaar <Bram@vim.org>
date Sat, 30 Mar 2019 14:00:07 +0100
parents c435843c7535
children 213b88f89597
comparison
equal deleted inserted replaced
16141:8abbc25d5d23 16142:570a296aa0b4
1589 #endif 1589 #endif
1590 fast_breakcheck(); 1590 fast_breakcheck();
1591 #ifdef FEAT_INS_EXPAND 1591 #ifdef FEAT_INS_EXPAND
1592 if ((flags & TAG_INS_COMP)) /* Double brackets for gcc */ 1592 if ((flags & TAG_INS_COMP)) /* Double brackets for gcc */
1593 ins_compl_check_keys(30, FALSE); 1593 ins_compl_check_keys(30, FALSE);
1594 if (got_int || compl_interrupted) 1594 if (got_int || ins_compl_interrupted())
1595 #else 1595 #else
1596 if (got_int) 1596 if (got_int)
1597 #endif 1597 #endif
1598 { 1598 {
1599 stop_searching = TRUE; 1599 stop_searching = TRUE;