comparison src/ex_getln.c @ 12293:1ff5e5dfa9b0 v8.0.1026

patch 8.0.1026: GTK on-the-spot input has problems commit https://github.com/vim/vim/commit/5c6dbcb03fa552d7b0e61c8fcf425147eb6bf7d5 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Aug 30 22:00:20 2017 +0200 patch 8.0.1026: GTK on-the-spot input has problems Problem: GTK on-the-spot input has problems. (Gerd Wachsmuth) Solution: Support over-the-spot. (Yukihiro Nakadaira, Ketn Takata, closes #1215)
author Christian Brabandt <cb@256bit.org>
date Wed, 30 Aug 2017 22:15:04 +0200
parents 7df3dd3c0ac1
children 68d7bc045dbe
comparison
equal deleted inserted replaced
12292:eddea00bc625 12293:1ff5e5dfa9b0
3466 msg_row = Rows - 1; 3466 msg_row = Rows - 1;
3467 } 3467 }
3468 3468
3469 windgoto(msg_row, msg_col); 3469 windgoto(msg_row, msg_col);
3470 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK) 3470 #if defined(FEAT_XIM) && defined(FEAT_GUI_GTK)
3471 redrawcmd_preedit(); 3471 if (p_imst == IM_ON_THE_SPOT)
3472 redrawcmd_preedit();
3472 #endif 3473 #endif
3473 #ifdef MCH_CURSOR_SHAPE 3474 #ifdef MCH_CURSOR_SHAPE
3474 mch_update_cursor(); 3475 mch_update_cursor();
3475 #endif 3476 #endif
3476 } 3477 }