Home
last modified time | relevance | path

Searched refs:typed_char (Results 1 – 5 of 5) sorted by relevance

/dports/editors/vim/vim-8.2.3745/src/
H A Dmessage.c28 static int do_more_prompt(int typed_char);
2809 do_more_prompt(int typed_char) in do_more_prompt() argument
2812 int used_typed_char = typed_char; in do_more_prompt()
2826 if (entered || (State == HITRETURN && typed_char == 0)) in do_more_prompt()
2830 if (typed_char == 'G') in do_more_prompt()
2841 if (typed_char == NUL) in do_more_prompt()
/dports/editors/neovim/neovim-0.6.1/src/nvim/
H A Dmessage.c2651 static int do_more_prompt(int typed_char) in do_more_prompt() argument
2654 int used_typed_char = typed_char; in do_more_prompt()
2672 if (no_need_more || entered || (State == HITRETURN && typed_char == 0)) { in do_more_prompt()
2677 if (typed_char == 'G') { in do_more_prompt()
2688 if (typed_char == NUL) { in do_more_prompt()
/dports/lang/yap/yap-6.2.2/LGPL/swi_console/
H A Dconsole.c933 typed_char(RlcData b, int chr) in typed_char() function
1084 typed_char(b, ESC); in rlc_wnd_proc()
1086 typed_char(b, chr); in rlc_wnd_proc()
1095 typed_char(b, chr); in rlc_wnd_proc()
1097 case WM_SYSCHAR: typed_char(b, ESC); /* Play escape-something */ in rlc_wnd_proc()
1100 typed_char(b, chr); in rlc_wnd_proc()
/dports/lang/swi-pl/swipl-8.2.3/src/win32/console/
H A Dconsole.c1002 typed_char(RlcData b, int chr) in typed_char() function
1176 typed_char(b, ESC); in rlc_wnd_proc()
1178 typed_char(b, chr); in rlc_wnd_proc()
1187 typed_char(b, chr); in rlc_wnd_proc()
1189 case WM_SYSCHAR: typed_char(b, ESC); /* Play escape-something */ in rlc_wnd_proc()
1192 typed_char(b, chr); in rlc_wnd_proc()
/dports/print/lyx/lyx-2.3.4.2/src/frontends/qt4/
H A DGuiWorkArea.cpp1244 char_type const typed_char = preedit_string_[pos]; in paintPreeditText() local
1249 if (cur_x + fm.width(typed_char) > p->viewport()->width() - right_margin) { in paintPreeditText()
1269 cur_x += pain.preeditText(cur_x, cur_y, typed_char, font, ps); in paintPreeditText()