Searched refs:char1 (Results 1 – 15 of 15) sorted by relevance
| /vim-8.2.3635/src/ |
| H A D | digraph.c | 22 char_u char1; member 1840 r[0] = dp->char1; in get_digraph_for_char() 1916 if ((int)dp->char1 == char1 && (int)dp->char2 == char2) in getexactdigraph() 1932 if ((int)dp->char1 == char1 && (int)dp->char2 == char2) in getexactdigraph() 1990 && ((retval = getexactdigraph(char2, char1, meta_char)) == char1)) in digraph_get() 2008 if ((int)dp->char1 == char1 && (int)dp->char2 == char2) in registerdigraph() 2020 dp->char1 = char1; in registerdigraph() 2068 char1 = *str++; in putdigraph() 2113 tmp.char1 = dp->char1; in listdigraphs() 2213 tmp.char1 = dp->char1; in digraph_getlist_common() [all …]
|
| H A D | ops.c | 69 get_op_type(int char1, int char2) in get_op_type() argument 73 if (char1 == 'r') // ignore second character in get_op_type() 75 if (char1 == '~') // when tilde is an operator in get_op_type() 77 if (char1 == 'g' && char2 == Ctrl_A) // add in get_op_type() 79 if (char1 == 'g' && char2 == Ctrl_X) // subtract in get_op_type() 81 if (char1 == 'z' && char2 == 'y') // OP_YANK in get_op_type() 85 if (opchars[i][0] == char1 && opchars[i][1] == char2) in get_op_type()
|
| /vim-8.2.3635/src/proto/ |
| H A D | digraph.pro | 5 int digraph_get(int char1, int char2, int meta_char);
|
| H A D | ops.pro | 2 int get_op_type(int char1, int char2);
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | cuda.vim | 20 syn keyword cudaType char1 char2 char3 char4
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | digraph.txt | 30 :dig[raphs] {char1}{char2} {number} ... 31 Add digraph {char1}{char2} to the list. {number} is 74 CTRL-K {char1} {char2} or 75 {char1} <BS> {char2} 79 If a digraph with {char1}{char2} does not exist, Vim searches for a digraph 80 {char2}{char1}. This helps when you don't remember which character comes 83 Note that when you enter CTRL-K {char1}, where {char1} is a special key, Vim
|
| H A D | intro.txt | 344 *{char1-char2}* 345 {char1-char2} A single character from the range char1 to char2. For
|
| H A D | quickref.txt | 320 |:dig| :dig[raphs] {char1}{char2} {number} ... 324 |i_CTRL-K| CTRL-K {char1} {char2} 326 |i_digraph| {char1} <BS> {char2} 1085 |c_CTRL-K| CTRL-K {char1} {char2}
|
| H A D | cmdline.txt | 134 {char1} <BS> {char2} or *c_digraph* 135 CTRL-K {char1} {char2} *c_CTRL-K* 136 enter digraph (see |digraphs|). When {char1} is a special
|
| H A D | index.txt | 56 |i_digraph| {char1}<BS>{char2} 63 |i_CTRL-K| CTRL-K {char1} {char2} 1034 |c_digraph| {char1} <BS> {char2} 1045 |c_CTRL-K| CTRL-K {char1} {char2}
|
| H A D | vi_diff.txt | 719 More can be added with ":digraph {char1}{char2} {number}". A digraph is 720 entered with "CTRL-K {char1} {char2}" or "{char1} BS {char2}" (only when
|
| H A D | insert.txt | 99 CTRL-K {char1} [char2] 100 Enter digraph (see |digraphs|). When {char1} is a special
|
| H A D | tags | 10579 {char1-char2} intro.txt /*{char1-char2}*
|
| H A D | options.txt | 2778 Enable the entering of digraphs in Insert mode with {char1} <BS>
|
| /vim-8.2.3635/src/testdir/ |
| H A D | test_digraph.vim | 11 func Put_Dig_BS(char1, char2) argument 12 exe "norm! o".a:char1."\<bs>".a:char2
|