comparison src/edit.c @ 11105:7c7e496e625d v8.0.0440

patch 8.0.0440: not enough test coverage in Insert mode commit https://github.com/vim/vim/commit/eb992cb90fd79c77ad2743459ac898e6ac3de939 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Mar 9 18:20:16 2017 +0100 patch 8.0.0440: not enough test coverage in Insert mode Problem: Not enough test coverage in Insert mode. Solution: Add lots of tests. Add test_override(). (Christian Brabandt, closes #1521)
author Christian Brabandt <cb@256bit.org>
date Thu, 09 Mar 2017 18:30:07 +0100
parents d2178a6cc9f3
children 778c10516955
comparison
equal deleted inserted replaced
11104:c6f6c6262418 11105:7c7e496e625d
2260 if (emsg_silent == 0) 2260 if (emsg_silent == 0)
2261 { 2261 {
2262 vim_beep(BO_COMPL); 2262 vim_beep(BO_COMPL);
2263 setcursor(); 2263 setcursor();
2264 out_flush(); 2264 out_flush();
2265 ui_delay(2000L, FALSE); 2265 #ifdef FEAT_EVAL
2266 if (!get_vim_var_nr(VV_TESTING))
2267 #endif
2268 ui_delay(2000L, FALSE);
2266 } 2269 }
2267 return FALSE; 2270 return FALSE;
2268 } 2271 }
2269 return TRUE; 2272 return TRUE;
2270 } 2273 }