Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 1 | " Test for edit functions |
Bram Moolenaar | 215ba3b | 2019-11-06 15:07:07 +0100 | [diff] [blame] | 2 | |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 3 | if exists("+t_kD") |
| 4 | let &t_kD="[3;*~" |
| 5 | endif |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 6 | |
Bram Moolenaar | 215ba3b | 2019-11-06 15:07:07 +0100 | [diff] [blame] | 7 | source check.vim |
| 8 | |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 9 | " Needed for testing basic rightleft: Test_edit_rightleft |
| 10 | source view_util.vim |
| 11 | |
| 12 | " Needs to come first until the bug in getchar() is |
| 13 | " fixed: https://groups.google.com/d/msg/vim_dev/fXL9yme4H4c/bOR-U6_bAQAJ |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 14 | func Test_edit_00b() |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 15 | new |
| 16 | call setline(1, ['abc ']) |
| 17 | inoreabbr <buffer> h here some more |
| 18 | call cursor(1, 4) |
| 19 | " <c-l> expands the abbreviation and ends insertmode |
| 20 | call feedkeys(":set im\<cr> h\<c-l>:set noim\<cr>", 'tix') |
| 21 | call assert_equal(['abc here some more '], getline(1,'$')) |
| 22 | iunabbr <buffer> h |
| 23 | bw! |
| 24 | endfunc |
| 25 | |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 26 | func Test_edit_01() |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 27 | " set for Travis CI? |
| 28 | " set nocp noesckeys |
| 29 | new |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 30 | " 1) empty buffer |
| 31 | call assert_equal([''], getline(1,'$')) |
| 32 | " 2) delete in an empty line |
| 33 | call feedkeys("i\<del>\<esc>", 'tnix') |
| 34 | call assert_equal([''], getline(1,'$')) |
| 35 | %d |
| 36 | " 3) delete one character |
| 37 | call setline(1, 'a') |
| 38 | call feedkeys("i\<del>\<esc>", 'tnix') |
| 39 | call assert_equal([''], getline(1,'$')) |
| 40 | %d |
| 41 | " 4) delete a multibyte character |
Bram Moolenaar | 30276f2 | 2019-01-24 17:59:39 +0100 | [diff] [blame] | 42 | call setline(1, "\u0401") |
| 43 | call feedkeys("i\<del>\<esc>", 'tnix') |
| 44 | call assert_equal([''], getline(1,'$')) |
| 45 | %d |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 46 | " 5.1) delete linebreak with 'bs' option containing eol |
| 47 | let _bs=&bs |
| 48 | set bs=eol |
| 49 | call setline(1, ["abc def", "ghi jkl"]) |
| 50 | call cursor(1, 1) |
| 51 | call feedkeys("A\<del>\<esc>", 'tnix') |
| 52 | call assert_equal(['abc defghi jkl'], getline(1, 2)) |
| 53 | %d |
| 54 | " 5.2) delete linebreak with backspace option w/out eol |
| 55 | set bs= |
| 56 | call setline(1, ["abc def", "ghi jkl"]) |
| 57 | call cursor(1, 1) |
| 58 | call feedkeys("A\<del>\<esc>", 'tnix') |
| 59 | call assert_equal(["abc def", "ghi jkl"], getline(1, 2)) |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 60 | let &bs=_bs |
| 61 | bw! |
| 62 | endfunc |
| 63 | |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 64 | func Test_edit_02() |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 65 | " Change cursor position in InsertCharPre command |
| 66 | new |
| 67 | call setline(1, 'abc') |
| 68 | call cursor(1, 1) |
| 69 | fu! DoIt(...) |
| 70 | call cursor(1, 4) |
| 71 | if len(a:000) |
| 72 | let v:char=a:1 |
| 73 | endif |
| 74 | endfu |
| 75 | au InsertCharPre <buffer> :call DoIt('y') |
| 76 | call feedkeys("ix\<esc>", 'tnix') |
| 77 | call assert_equal(['abcy'], getline(1, '$')) |
| 78 | " Setting <Enter> in InsertCharPre |
| 79 | au! InsertCharPre <buffer> :call DoIt("\n") |
| 80 | call setline(1, 'abc') |
| 81 | call cursor(1, 1) |
| 82 | call feedkeys("ix\<esc>", 'tnix') |
| 83 | call assert_equal(['abc', ''], getline(1, '$')) |
| 84 | %d |
| 85 | au! InsertCharPre |
| 86 | " Change cursor position in InsertEnter command |
| 87 | " 1) when setting v:char, keeps changed cursor position |
| 88 | au! InsertEnter <buffer> :call DoIt('y') |
| 89 | call setline(1, 'abc') |
| 90 | call cursor(1, 1) |
| 91 | call feedkeys("ix\<esc>", 'tnix') |
| 92 | call assert_equal(['abxc'], getline(1, '$')) |
| 93 | " 2) when not setting v:char, restores changed cursor position |
| 94 | au! InsertEnter <buffer> :call DoIt() |
| 95 | call setline(1, 'abc') |
| 96 | call cursor(1, 1) |
| 97 | call feedkeys("ix\<esc>", 'tnix') |
| 98 | call assert_equal(['xabc'], getline(1, '$')) |
| 99 | au! InsertEnter |
| 100 | delfu DoIt |
| 101 | bw! |
| 102 | endfunc |
| 103 | |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 104 | func Test_edit_03() |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 105 | " Change cursor after <c-o> command to end of line |
| 106 | new |
| 107 | call setline(1, 'abc') |
| 108 | call cursor(1, 1) |
| 109 | call feedkeys("i\<c-o>$y\<esc>", 'tnix') |
| 110 | call assert_equal(['abcy'], getline(1, '$')) |
| 111 | %d |
| 112 | call setline(1, 'abc') |
| 113 | call cursor(1, 1) |
| 114 | call feedkeys("i\<c-o>80|y\<esc>", 'tnix') |
| 115 | call assert_equal(['abcy'], getline(1, '$')) |
| 116 | %d |
| 117 | call setline(1, 'abc') |
| 118 | call feedkeys("Ad\<c-o>:s/$/efg/\<cr>hij", 'tnix') |
| 119 | call assert_equal(['hijabcdefg'], getline(1, '$')) |
| 120 | bw! |
| 121 | endfunc |
| 122 | |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 123 | func Test_edit_04() |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 124 | " test for :stopinsert |
| 125 | new |
| 126 | call setline(1, 'abc') |
| 127 | call cursor(1, 1) |
| 128 | call feedkeys("i\<c-o>:stopinsert\<cr>$", 'tnix') |
| 129 | call feedkeys("aX\<esc>", 'tnix') |
| 130 | call assert_equal(['abcX'], getline(1, '$')) |
| 131 | %d |
| 132 | bw! |
| 133 | endfunc |
| 134 | |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 135 | func Test_edit_05() |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 136 | " test for folds being opened |
| 137 | new |
| 138 | call setline(1, ['abcX', 'abcX', 'zzzZ']) |
| 139 | call cursor(1, 1) |
| 140 | set foldmethod=manual foldopen+=insert |
| 141 | " create fold for those two lines |
| 142 | norm! Vjzf |
| 143 | call feedkeys("$ay\<esc>", 'tnix') |
| 144 | call assert_equal(['abcXy', 'abcX', 'zzzZ'], getline(1, '$')) |
| 145 | %d |
| 146 | call setline(1, ['abcX', 'abcX', 'zzzZ']) |
| 147 | call cursor(1, 1) |
| 148 | set foldmethod=manual foldopen-=insert |
| 149 | " create fold for those two lines |
| 150 | norm! Vjzf |
| 151 | call feedkeys("$ay\<esc>", 'tnix') |
| 152 | call assert_equal(['abcXy', 'abcX', 'zzzZ'], getline(1, '$')) |
| 153 | %d |
| 154 | bw! |
| 155 | endfunc |
| 156 | |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 157 | func Test_edit_06() |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 158 | " Test in diff mode |
Bram Moolenaar | 6d91bcb | 2020-08-12 18:50:36 +0200 | [diff] [blame] | 159 | CheckFeature diff |
| 160 | CheckExecutable diff |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 161 | new |
| 162 | call setline(1, ['abc', 'xxx', 'yyy']) |
| 163 | vnew |
| 164 | call setline(1, ['abc', 'zzz', 'xxx', 'yyy']) |
| 165 | wincmd p |
| 166 | diffthis |
| 167 | wincmd p |
| 168 | diffthis |
| 169 | wincmd p |
| 170 | call cursor(2, 1) |
| 171 | norm! zt |
| 172 | call feedkeys("Ozzz\<esc>", 'tnix') |
| 173 | call assert_equal(['abc', 'zzz', 'xxx', 'yyy'], getline(1,'$')) |
| 174 | bw! |
| 175 | bw! |
| 176 | endfunc |
| 177 | |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 178 | func Test_edit_07() |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 179 | " 1) Test with completion <c-l> when popupmenu is visible |
| 180 | new |
| 181 | call setline(1, 'J') |
| 182 | |
| 183 | func! ListMonths() |
| 184 | call complete(col('.')-1, ['January', 'February', 'March', |
| 185 | \ 'April', 'May', 'June', 'July', 'August', 'September', |
| 186 | \ 'October', 'November', 'December']) |
| 187 | return '' |
| 188 | endfunc |
| 189 | inoremap <buffer> <F5> <C-R>=ListMonths()<CR> |
| 190 | |
| 191 | call feedkeys("A\<f5>\<c-p>". repeat("\<down>", 6)."\<c-l>\<down>\<c-l>\<cr>", 'tx') |
| 192 | call assert_equal(['July'], getline(1,'$')) |
| 193 | " 1) Test completion when InsertCharPre kicks in |
| 194 | %d |
| 195 | call setline(1, 'J') |
| 196 | fu! DoIt() |
| 197 | if v:char=='u' |
| 198 | let v:char='an' |
| 199 | endif |
| 200 | endfu |
| 201 | au InsertCharPre <buffer> :call DoIt() |
| 202 | call feedkeys("A\<f5>\<c-p>u\<cr>\<c-l>\<cr>", 'tx') |
Bram Moolenaar | 4c313b1 | 2019-08-24 22:58:31 +0200 | [diff] [blame] | 203 | call assert_equal(["Jan\<c-l>",''], 1->getline('$')) |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 204 | %d |
| 205 | call setline(1, 'J') |
| 206 | call feedkeys("A\<f5>\<c-p>u\<down>\<c-l>\<cr>", 'tx') |
Bram Moolenaar | 4c313b1 | 2019-08-24 22:58:31 +0200 | [diff] [blame] | 207 | call assert_equal(["January"], 1->getline('$')) |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 208 | |
| 209 | delfu ListMonths |
| 210 | delfu DoIt |
| 211 | iunmap <buffer> <f5> |
| 212 | bw! |
| 213 | endfunc |
| 214 | |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 215 | func Test_edit_08() |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 216 | " reset insertmode from i_ctrl-r_= |
Bram Moolenaar | 2a45d64 | 2017-10-27 01:35:00 +0200 | [diff] [blame] | 217 | let g:bufnr = bufnr('%') |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 218 | new |
| 219 | call setline(1, ['abc']) |
| 220 | call cursor(1, 4) |
Bram Moolenaar | 2a45d64 | 2017-10-27 01:35:00 +0200 | [diff] [blame] | 221 | call feedkeys(":set im\<cr>ZZZ\<c-r>=setbufvar(g:bufnr,'&im', 0)\<cr>",'tnix') |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 222 | call assert_equal(['abZZZc'], getline(1,'$')) |
| 223 | call assert_equal([0, 1, 1, 0], getpos('.')) |
| 224 | call assert_false(0, '&im') |
| 225 | bw! |
Bram Moolenaar | 2a45d64 | 2017-10-27 01:35:00 +0200 | [diff] [blame] | 226 | unlet g:bufnr |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 227 | endfunc |
| 228 | |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 229 | func Test_edit_09() |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 230 | " test i_CTRL-\ combinations |
| 231 | new |
| 232 | call setline(1, ['abc', 'def', 'ghi']) |
| 233 | call cursor(1, 1) |
| 234 | " 1) CTRL-\ CTLR-N |
| 235 | call feedkeys(":set im\<cr>\<c-\>\<c-n>ccABC\<c-l>", 'txin') |
| 236 | call assert_equal(['ABC', 'def', 'ghi'], getline(1,'$')) |
| 237 | call setline(1, ['ABC', 'def', 'ghi']) |
| 238 | " 2) CTRL-\ CTLR-G |
| 239 | call feedkeys("j0\<c-\>\<c-g>ZZZ\<cr>\<c-l>", 'txin') |
| 240 | call assert_equal(['ABC', 'ZZZ', 'def', 'ghi'], getline(1,'$')) |
| 241 | call feedkeys("I\<c-\>\<c-g>YYY\<c-l>", 'txin') |
| 242 | call assert_equal(['ABC', 'ZZZ', 'YYYdef', 'ghi'], getline(1,'$')) |
| 243 | set noinsertmode |
| 244 | " 3) CTRL-\ CTRL-O |
| 245 | call setline(1, ['ABC', 'ZZZ', 'def', 'ghi']) |
| 246 | call cursor(1, 1) |
| 247 | call feedkeys("A\<c-o>ix", 'txin') |
| 248 | call assert_equal(['ABxC', 'ZZZ', 'def', 'ghi'], getline(1,'$')) |
| 249 | call feedkeys("A\<c-\>\<c-o>ix", 'txin') |
| 250 | call assert_equal(['ABxCx', 'ZZZ', 'def', 'ghi'], getline(1,'$')) |
| 251 | " 4) CTRL-\ a (should be inserted literally, not special after <c-\> |
| 252 | call setline(1, ['ABC', 'ZZZ', 'def', 'ghi']) |
| 253 | call cursor(1, 1) |
| 254 | call feedkeys("A\<c-\>a", 'txin') |
| 255 | call assert_equal(["ABC\<c-\>a", 'ZZZ', 'def', 'ghi'], getline(1, '$')) |
| 256 | bw! |
| 257 | endfunc |
| 258 | |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 259 | func Test_edit_11() |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 260 | " Test that indenting kicks in |
| 261 | new |
| 262 | set cindent |
| 263 | call setline(1, ['{', '', '']) |
| 264 | call cursor(2, 1) |
| 265 | call feedkeys("i\<c-f>int c;\<esc>", 'tnix') |
| 266 | call cursor(3, 1) |
Bram Moolenaar | 1671f44 | 2020-03-10 07:48:13 +0100 | [diff] [blame] | 267 | call feedkeys("\<Insert>/* comment */", 'tnix') |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 268 | call assert_equal(['{', "\<tab>int c;", "/* comment */"], getline(1, '$')) |
| 269 | " added changed cindentkeys slightly |
| 270 | set cindent cinkeys+=*/ |
| 271 | call setline(1, ['{', '', '']) |
| 272 | call cursor(2, 1) |
| 273 | call feedkeys("i\<c-f>int c;\<esc>", 'tnix') |
| 274 | call cursor(3, 1) |
| 275 | call feedkeys("i/* comment */", 'tnix') |
| 276 | call assert_equal(['{', "\<tab>int c;", "\<tab>/* comment */"], getline(1, '$')) |
| 277 | set cindent cinkeys+==end |
| 278 | call feedkeys("oend\<cr>\<esc>", 'tnix') |
| 279 | call assert_equal(['{', "\<tab>int c;", "\<tab>/* comment */", "\tend", ''], getline(1, '$')) |
| 280 | set cinkeys-==end |
| 281 | %d |
| 282 | " Use indentexpr instead of cindenting |
| 283 | func! Do_Indent() |
| 284 | if v:lnum == 3 |
| 285 | return 3*shiftwidth() |
| 286 | else |
| 287 | return 2*shiftwidth() |
| 288 | endif |
| 289 | endfunc |
| 290 | setl indentexpr=Do_Indent() indentkeys+=*/ |
| 291 | call setline(1, ['{', '', '']) |
| 292 | call cursor(2, 1) |
| 293 | call feedkeys("i\<c-f>int c;\<esc>", 'tnix') |
| 294 | call cursor(3, 1) |
| 295 | call feedkeys("i/* comment */", 'tnix') |
| 296 | call assert_equal(['{', "\<tab>\<tab>int c;", "\<tab>\<tab>\<tab>/* comment */"], getline(1, '$')) |
| 297 | set cinkeys&vim indentkeys&vim |
| 298 | set nocindent indentexpr= |
| 299 | delfu Do_Indent |
| 300 | bw! |
| 301 | endfunc |
| 302 | |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 303 | func Test_edit_11_indentexpr() |
Bram Moolenaar | 1b38344 | 2017-09-26 20:04:54 +0200 | [diff] [blame] | 304 | " Test that indenting kicks in |
| 305 | new |
| 306 | " Use indentexpr instead of cindenting |
| 307 | func! Do_Indent() |
| 308 | let pline=prevnonblank(v:lnum) |
| 309 | if empty(getline(v:lnum)) |
| 310 | if getline(pline) =~ 'if\|then' |
| 311 | return shiftwidth() |
| 312 | else |
| 313 | return 0 |
| 314 | endif |
| 315 | else |
| 316 | return 0 |
| 317 | endif |
| 318 | endfunc |
| 319 | setl indentexpr=Do_Indent() indentkeys+=0=then,0=fi |
| 320 | call setline(1, ['if [ $this ]']) |
| 321 | call cursor(1, 1) |
| 322 | call feedkeys("othen\<cr>that\<cr>fi", 'tnix') |
| 323 | call assert_equal(['if [ $this ]', "then", "\<tab>that", "fi"], getline(1, '$')) |
| 324 | set cinkeys&vim indentkeys&vim |
| 325 | set nocindent indentexpr= |
| 326 | delfu Do_Indent |
Yegappan Lakshmanan | 8bb65f2 | 2021-12-26 10:51:39 +0000 | [diff] [blame] | 327 | |
| 328 | " Using a script-local function |
| 329 | func s:NewIndentExpr() |
| 330 | endfunc |
| 331 | set indentexpr=s:NewIndentExpr() |
| 332 | call assert_equal(expand('<SID>') .. 'NewIndentExpr()', &indentexpr) |
| 333 | set indentexpr=<SID>NewIndentExpr() |
| 334 | call assert_equal(expand('<SID>') .. 'NewIndentExpr()', &indentexpr) |
| 335 | set indentexpr& |
| 336 | |
Bram Moolenaar | 1b38344 | 2017-09-26 20:04:54 +0200 | [diff] [blame] | 337 | bw! |
| 338 | endfunc |
| 339 | |
Bram Moolenaar | f9ab52e | 2020-05-05 19:57:18 +0200 | [diff] [blame] | 340 | " Test changing indent in replace mode |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 341 | func Test_edit_12() |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 342 | new |
| 343 | call setline(1, ["\tabc", "\tdef"]) |
| 344 | call cursor(2, 4) |
| 345 | call feedkeys("R^\<c-d>", 'tnix') |
| 346 | call assert_equal(["\tabc", "def"], getline(1, '$')) |
Bram Moolenaar | 4c313b1 | 2019-08-24 22:58:31 +0200 | [diff] [blame] | 347 | call assert_equal([0, 2, 2, 0], '.'->getpos()) |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 348 | %d |
| 349 | call setline(1, ["\tabc", "\t\tdef"]) |
| 350 | call cursor(2, 2) |
| 351 | call feedkeys("R^\<c-d>", 'tnix') |
| 352 | call assert_equal(["\tabc", "def"], getline(1, '$')) |
| 353 | call assert_equal([0, 2, 1, 0], getpos('.')) |
| 354 | %d |
| 355 | call setline(1, ["\tabc", "\t\tdef"]) |
| 356 | call cursor(2, 2) |
| 357 | call feedkeys("R\<c-t>", 'tnix') |
| 358 | call assert_equal(["\tabc", "\t\t\tdef"], getline(1, '$')) |
| 359 | call assert_equal([0, 2, 2, 0], getpos('.')) |
| 360 | bw! |
| 361 | 10vnew |
| 362 | call setline(1, ["\tabc", "\t\tdef"]) |
| 363 | call cursor(2, 2) |
| 364 | call feedkeys("R\<c-t>", 'tnix') |
| 365 | call assert_equal(["\tabc", "\t\t\tdef"], getline(1, '$')) |
| 366 | call assert_equal([0, 2, 2, 0], getpos('.')) |
| 367 | %d |
| 368 | set sw=4 |
| 369 | call setline(1, ["\tabc", "\t\tdef"]) |
| 370 | call cursor(2, 2) |
| 371 | call feedkeys("R\<c-t>\<c-t>", 'tnix') |
| 372 | call assert_equal(["\tabc", "\t\t\tdef"], getline(1, '$')) |
| 373 | call assert_equal([0, 2, 2, 0], getpos('.')) |
| 374 | %d |
| 375 | call setline(1, ["\tabc", "\t\tdef"]) |
| 376 | call cursor(2, 2) |
| 377 | call feedkeys("R\<c-t>\<c-t>", 'tnix') |
| 378 | call assert_equal(["\tabc", "\t\t\tdef"], getline(1, '$')) |
| 379 | call assert_equal([0, 2, 2, 0], getpos('.')) |
Bram Moolenaar | f9ab52e | 2020-05-05 19:57:18 +0200 | [diff] [blame] | 380 | set sw& |
| 381 | |
| 382 | " In replace mode, after hitting enter in a line with tab characters, |
| 383 | " pressing backspace should restore the tab characters. |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 384 | %d |
Bram Moolenaar | f9ab52e | 2020-05-05 19:57:18 +0200 | [diff] [blame] | 385 | setlocal autoindent backspace=2 |
| 386 | call setline(1, "\tone\t\ttwo") |
| 387 | exe "normal ggRred\<CR>six" .. repeat("\<BS>", 8) |
| 388 | call assert_equal(["\tone\t\ttwo"], getline(1, '$')) |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 389 | bw! |
| 390 | endfunc |
| 391 | |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 392 | func Test_edit_13() |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 393 | " Test smartindenting |
| 394 | if exists("+smartindent") |
| 395 | new |
| 396 | set smartindent autoindent |
| 397 | call setline(1, ["\tabc"]) |
| 398 | call feedkeys("A {\<cr>more\<cr>}\<esc>", 'tnix') |
| 399 | call assert_equal(["\tabc {", "\t\tmore", "\t}"], getline(1, '$')) |
| 400 | set smartindent& autoindent& |
Bram Moolenaar | 2ba4238 | 2019-03-16 18:11:07 +0100 | [diff] [blame] | 401 | bwipe! |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 402 | endif |
Bram Moolenaar | 2ba4238 | 2019-03-16 18:11:07 +0100 | [diff] [blame] | 403 | |
| 404 | " Test autoindent removing indent of blank line. |
| 405 | new |
| 406 | call setline(1, ' foo bar baz') |
| 407 | set autoindent |
| 408 | exe "normal 0eea\<CR>\<CR>\<Esc>" |
| 409 | call assert_equal(" foo bar", getline(1)) |
| 410 | call assert_equal("", getline(2)) |
| 411 | call assert_equal(" baz", getline(3)) |
| 412 | set autoindent& |
Bram Moolenaar | 845e0ee | 2020-06-20 16:05:32 +0200 | [diff] [blame] | 413 | |
| 414 | " pressing <C-U> to erase line should keep the indent with 'autoindent' |
| 415 | set backspace=2 autoindent |
| 416 | %d |
| 417 | exe "normal i\tone\<CR>three\<C-U>two" |
| 418 | call assert_equal(["\tone", "\ttwo"], getline(1, '$')) |
| 419 | set backspace& autoindent& |
| 420 | |
Bram Moolenaar | 2ba4238 | 2019-03-16 18:11:07 +0100 | [diff] [blame] | 421 | bwipe! |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 422 | endfunc |
| 423 | |
Bram Moolenaar | 1f448d9 | 2021-03-22 19:37:06 +0100 | [diff] [blame] | 424 | " Test for autoindent removing indent when insert mode is stopped. Some parts |
| 425 | " of the code is exercised only when interactive mode is used. So use Vim in a |
| 426 | " terminal. |
| 427 | func Test_autoindent_remove_indent() |
| 428 | CheckRunVimInTerminal |
| 429 | let buf = RunVimInTerminal('-N Xfile', {'rows': 6, 'cols' : 20}) |
| 430 | call TermWait(buf) |
| 431 | call term_sendkeys(buf, ":set autoindent\n") |
| 432 | " leaving insert mode in a new line with indent added by autoindent, should |
| 433 | " remove the indent. |
| 434 | call term_sendkeys(buf, "i\<Tab>foo\<CR>\<Esc>") |
Dominique Pelle | 923dce2 | 2021-11-21 11:36:04 +0000 | [diff] [blame] | 435 | " Need to delay for some time, otherwise the code in getchar.c will not be |
Bram Moolenaar | 1f448d9 | 2021-03-22 19:37:06 +0100 | [diff] [blame] | 436 | " exercised. |
| 437 | call TermWait(buf, 50) |
| 438 | " when a line is wrapped and the cursor is at the start of the second line, |
| 439 | " leaving insert mode, should move the cursor back to the first line. |
| 440 | call term_sendkeys(buf, "o" .. repeat('x', 20) .. "\<Esc>") |
Dominique Pelle | 923dce2 | 2021-11-21 11:36:04 +0000 | [diff] [blame] | 441 | " Need to delay for some time, otherwise the code in getchar.c will not be |
Bram Moolenaar | 1f448d9 | 2021-03-22 19:37:06 +0100 | [diff] [blame] | 442 | " exercised. |
| 443 | call TermWait(buf, 50) |
| 444 | call term_sendkeys(buf, ":w\n") |
| 445 | call TermWait(buf) |
| 446 | call StopVimInTerminal(buf) |
| 447 | call assert_equal(["\tfoo", '', repeat('x', 20)], readfile('Xfile')) |
| 448 | call delete('Xfile') |
| 449 | endfunc |
| 450 | |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 451 | func Test_edit_CR() |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 452 | " Test for <CR> in insert mode |
Dominique Pelle | 923dce2 | 2021-11-21 11:36:04 +0000 | [diff] [blame] | 453 | " basically only in quickfix mode it's tested, the rest |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 454 | " has been taken care of by other tests |
Bram Moolenaar | 6d91bcb | 2020-08-12 18:50:36 +0200 | [diff] [blame] | 455 | CheckFeature quickfix |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 456 | botright new |
| 457 | call writefile(range(1, 10), 'Xqflist.txt') |
| 458 | call setqflist([{'filename': 'Xqflist.txt', 'lnum': 2}]) |
| 459 | copen |
| 460 | set modifiable |
| 461 | call feedkeys("A\<cr>", 'tnix') |
| 462 | call assert_equal('Xqflist.txt', bufname('')) |
| 463 | call assert_equal(2, line('.')) |
| 464 | cclose |
| 465 | botright new |
| 466 | call setloclist(0, [{'filename': 'Xqflist.txt', 'lnum': 10}]) |
| 467 | lopen |
| 468 | set modifiable |
| 469 | call feedkeys("A\<cr>", 'tnix') |
| 470 | call assert_equal('Xqflist.txt', bufname('')) |
| 471 | call assert_equal(10, line('.')) |
| 472 | call feedkeys("A\<Enter>", 'tnix') |
| 473 | call feedkeys("A\<kEnter>", 'tnix') |
| 474 | call feedkeys("A\n", 'tnix') |
| 475 | call feedkeys("A\r", 'tnix') |
| 476 | call assert_equal(map(range(1, 10), 'string(v:val)') + ['', '', '', ''], getline(1, '$')) |
| 477 | bw! |
| 478 | lclose |
| 479 | call delete('Xqflist.txt') |
| 480 | endfunc |
| 481 | |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 482 | func Test_edit_CTRL_() |
Bram Moolenaar | 6d91bcb | 2020-08-12 18:50:36 +0200 | [diff] [blame] | 483 | CheckFeature rightleft |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 484 | " disabled for Windows builds, why? |
Bram Moolenaar | 6d91bcb | 2020-08-12 18:50:36 +0200 | [diff] [blame] | 485 | CheckNotMSWindows |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 486 | let _encoding=&encoding |
| 487 | set encoding=utf-8 |
| 488 | " Test for CTRL-_ |
| 489 | new |
| 490 | call setline(1, ['abc']) |
| 491 | call cursor(1, 1) |
| 492 | call feedkeys("i\<c-_>xyz\<esc>", 'tnix') |
| 493 | call assert_equal(["\<C-_>xyzabc"], getline(1, '$')) |
| 494 | call assert_false(&revins) |
| 495 | set ari |
| 496 | call setline(1, ['abc']) |
| 497 | call cursor(1, 1) |
| 498 | call feedkeys("i\<c-_>xyz\<esc>", 'tnix') |
| 499 | call assert_equal(["æèñabc"], getline(1, '$')) |
| 500 | call assert_true(&revins) |
| 501 | call setline(1, ['abc']) |
| 502 | call cursor(1, 1) |
| 503 | call feedkeys("i\<c-_>xyz\<esc>", 'tnix') |
| 504 | call assert_equal(["xyzabc"], getline(1, '$')) |
| 505 | call assert_false(&revins) |
| 506 | set noari |
| 507 | let &encoding=_encoding |
| 508 | bw! |
| 509 | endfunc |
| 510 | |
| 511 | " needs to come first, to have the @. register empty |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 512 | func Test_edit_00a_CTRL_A() |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 513 | " Test pressing CTRL-A |
| 514 | new |
| 515 | call setline(1, repeat([''], 5)) |
| 516 | call cursor(1, 1) |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 517 | try |
| 518 | call feedkeys("A\<NUL>", 'tnix') |
| 519 | catch /^Vim\%((\a\+)\)\=:E29/ |
| 520 | call assert_true(1, 'E29 error caught') |
| 521 | endtry |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 522 | call cursor(1, 1) |
| 523 | call feedkeys("Afoobar \<esc>", 'tnix') |
| 524 | call cursor(2, 1) |
| 525 | call feedkeys("A\<c-a>more\<esc>", 'tnix') |
| 526 | call cursor(3, 1) |
| 527 | call feedkeys("A\<NUL>and more\<esc>", 'tnix') |
| 528 | call assert_equal(['foobar ', 'foobar more', 'foobar morend more', '', ''], getline(1, '$')) |
| 529 | bw! |
| 530 | endfunc |
| 531 | |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 532 | func Test_edit_CTRL_EY() |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 533 | " Ctrl-E/ Ctrl-Y in insert mode completion to scroll |
| 534 | 10new |
| 535 | call setline(1, range(1, 100)) |
| 536 | call cursor(30, 1) |
| 537 | norm! z. |
| 538 | call feedkeys("A\<c-x>\<c-e>\<c-e>\<c-e>\<c-e>\<c-e>", 'tnix') |
| 539 | call assert_equal(30, winsaveview()['topline']) |
| 540 | call assert_equal([0, 30, 2, 0], getpos('.')) |
| 541 | call feedkeys("A\<c-x>\<c-e>\<c-e>\<c-e>\<c-e>\<c-e>", 'tnix') |
| 542 | call feedkeys("A\<c-x>".repeat("\<c-y>", 10), 'tnix') |
| 543 | call assert_equal(21, winsaveview()['topline']) |
| 544 | call assert_equal([0, 30, 2, 0], getpos('.')) |
| 545 | bw! |
| 546 | endfunc |
| 547 | |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 548 | func Test_edit_CTRL_G() |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 549 | new |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 550 | call setline(1, ['foobar', 'foobar', 'foobar']) |
| 551 | call cursor(2, 4) |
| 552 | call feedkeys("ioooooooo\<c-g>k\<c-r>.\<esc>", 'tnix') |
| 553 | call assert_equal(['foooooooooobar', 'foooooooooobar', 'foobar'], getline(1, '$')) |
| 554 | call assert_equal([0, 1, 11, 0], getpos('.')) |
| 555 | call feedkeys("i\<c-g>k\<esc>", 'tnix') |
| 556 | call assert_equal([0, 1, 10, 0], getpos('.')) |
| 557 | call cursor(2, 4) |
| 558 | call feedkeys("i\<c-g>jzzzz\<esc>", 'tnix') |
| 559 | call assert_equal(['foooooooooobar', 'foooooooooobar', 'foozzzzbar'], getline(1, '$')) |
| 560 | call assert_equal([0, 3, 7, 0], getpos('.')) |
| 561 | call feedkeys("i\<c-g>j\<esc>", 'tnix') |
| 562 | call assert_equal([0, 3, 6, 0], getpos('.')) |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 563 | bw! |
| 564 | endfunc |
| 565 | |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 566 | func Test_edit_CTRL_I() |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 567 | " Tab in completion mode |
| 568 | let path=expand("%:p:h") |
| 569 | new |
Bram Moolenaar | ca85159 | 2018-06-06 21:04:07 +0200 | [diff] [blame] | 570 | call setline(1, [path. "/", '']) |
Bram Moolenaar | c537947 | 2017-03-16 22:38:00 +0100 | [diff] [blame] | 571 | call feedkeys("Arunt\<c-x>\<c-f>\<tab>\<cr>\<esc>", 'tnix') |
| 572 | call assert_match('runtest\.vim', getline(1)) |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 573 | %d |
| 574 | call writefile(['one', 'two', 'three'], 'Xinclude.txt') |
| 575 | let include='#include Xinclude.txt' |
| 576 | call setline(1, [include, '']) |
| 577 | call cursor(2, 1) |
| 578 | call feedkeys("A\<c-x>\<tab>\<cr>\<esc>", 'tnix') |
| 579 | call assert_equal([include, 'one', ''], getline(1, '$')) |
| 580 | call feedkeys("2ggC\<c-x>\<tab>\<down>\<cr>\<esc>", 'tnix') |
| 581 | call assert_equal([include, 'two', ''], getline(1, '$')) |
| 582 | call feedkeys("2ggC\<c-x>\<tab>\<down>\<down>\<cr>\<esc>", 'tnix') |
| 583 | call assert_equal([include, 'three', ''], getline(1, '$')) |
| 584 | call feedkeys("2ggC\<c-x>\<tab>\<down>\<down>\<down>\<cr>\<esc>", 'tnix') |
| 585 | call assert_equal([include, '', ''], getline(1, '$')) |
| 586 | call delete("Xinclude.txt") |
| 587 | bw! |
| 588 | endfunc |
| 589 | |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 590 | func Test_edit_CTRL_K() |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 591 | " Test pressing CTRL-K (basically only dictionary completion and digraphs |
| 592 | " the rest is already covered |
| 593 | call writefile(['A', 'AA', 'AAA', 'AAAA'], 'Xdictionary.txt') |
| 594 | set dictionary=Xdictionary.txt |
| 595 | new |
| 596 | call setline(1, 'A') |
| 597 | call cursor(1, 1) |
| 598 | call feedkeys("A\<c-x>\<c-k>\<cr>\<esc>", 'tnix') |
| 599 | call assert_equal(['AA', ''], getline(1, '$')) |
| 600 | %d |
| 601 | call setline(1, 'A') |
| 602 | call cursor(1, 1) |
| 603 | call feedkeys("A\<c-x>\<c-k>\<down>\<cr>\<esc>", 'tnix') |
| 604 | call assert_equal(['AAA'], getline(1, '$')) |
| 605 | %d |
| 606 | call setline(1, 'A') |
| 607 | call cursor(1, 1) |
| 608 | call feedkeys("A\<c-x>\<c-k>\<down>\<down>\<cr>\<esc>", 'tnix') |
| 609 | call assert_equal(['AAAA'], getline(1, '$')) |
| 610 | %d |
| 611 | call setline(1, 'A') |
| 612 | call cursor(1, 1) |
| 613 | call feedkeys("A\<c-x>\<c-k>\<down>\<down>\<down>\<cr>\<esc>", 'tnix') |
| 614 | call assert_equal(['A'], getline(1, '$')) |
| 615 | %d |
| 616 | call setline(1, 'A') |
| 617 | call cursor(1, 1) |
| 618 | call feedkeys("A\<c-x>\<c-k>\<down>\<down>\<down>\<down>\<cr>\<esc>", 'tnix') |
| 619 | call assert_equal(['AA'], getline(1, '$')) |
| 620 | |
Bram Moolenaar | 4b96df5 | 2020-01-26 22:00:26 +0100 | [diff] [blame] | 621 | " press an unexpected key after dictionary completion |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 622 | %d |
| 623 | call setline(1, 'A') |
| 624 | call cursor(1, 1) |
| 625 | call feedkeys("A\<c-x>\<c-k>\<c-]>\<cr>\<esc>", 'tnix') |
| 626 | call assert_equal(['AA', ''], getline(1, '$')) |
| 627 | %d |
| 628 | call setline(1, 'A') |
| 629 | call cursor(1, 1) |
| 630 | call feedkeys("A\<c-x>\<c-k>\<c-s>\<cr>\<esc>", 'tnix') |
| 631 | call assert_equal(["AA\<c-s>", ''], getline(1, '$')) |
| 632 | %d |
| 633 | call setline(1, 'A') |
| 634 | call cursor(1, 1) |
| 635 | call feedkeys("A\<c-x>\<c-k>\<c-f>\<cr>\<esc>", 'tnix') |
| 636 | call assert_equal(["AA\<c-f>", ''], getline(1, '$')) |
| 637 | |
| 638 | set dictionary= |
| 639 | %d |
| 640 | call setline(1, 'A') |
| 641 | call cursor(1, 1) |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 642 | let v:testing = 1 |
| 643 | try |
| 644 | call feedkeys("A\<c-x>\<c-k>\<esc>", 'tnix') |
| 645 | catch |
| 646 | " error sleeps 2 seconds, when v:testing is not set |
| 647 | let v:testing = 0 |
| 648 | endtry |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 649 | call delete('Xdictionary.txt') |
| 650 | |
Bram Moolenaar | 30276f2 | 2019-01-24 17:59:39 +0100 | [diff] [blame] | 651 | call test_override("char_avail", 1) |
| 652 | set showcmd |
| 653 | %d |
| 654 | call feedkeys("A\<c-k>a:\<esc>", 'tnix') |
| 655 | call assert_equal(['ä'], getline(1, '$')) |
| 656 | call test_override("char_avail", 0) |
| 657 | set noshowcmd |
| 658 | |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 659 | bw! |
| 660 | endfunc |
| 661 | |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 662 | func Test_edit_CTRL_L() |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 663 | " Test Ctrl-X Ctrl-L (line completion) |
| 664 | new |
| 665 | set complete=. |
| 666 | call setline(1, ['one', 'two', 'three', '', '', '', '']) |
| 667 | call cursor(4, 1) |
| 668 | call feedkeys("A\<c-x>\<c-l>\<esc>", 'tnix') |
| 669 | call assert_equal(['one', 'two', 'three', 'three', '', '', ''], getline(1, '$')) |
| 670 | call feedkeys("cct\<c-x>\<c-l>\<c-n>\<esc>", 'tnix') |
| 671 | call assert_equal(['one', 'two', 'three', 't', '', '', ''], getline(1, '$')) |
| 672 | call feedkeys("cct\<c-x>\<c-l>\<c-n>\<c-n>\<esc>", 'tnix') |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 673 | call assert_equal(['one', 'two', 'three', 'two', '', '', ''], getline(1, '$')) |
Bram Moolenaar | 02ae9b4 | 2018-02-09 15:06:02 +0100 | [diff] [blame] | 674 | call feedkeys("cct\<c-x>\<c-l>\<c-n>\<c-n>\<c-n>\<esc>", 'tnix') |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 675 | call assert_equal(['one', 'two', 'three', 'three', '', '', ''], getline(1, '$')) |
Bram Moolenaar | 02ae9b4 | 2018-02-09 15:06:02 +0100 | [diff] [blame] | 676 | call feedkeys("cct\<c-x>\<c-l>\<c-n>\<c-n>\<c-n>\<c-n>\<esc>", 'tnix') |
| 677 | call assert_equal(['one', 'two', 'three', 't', '', '', ''], getline(1, '$')) |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 678 | call feedkeys("cct\<c-x>\<c-l>\<c-p>\<esc>", 'tnix') |
| 679 | call assert_equal(['one', 'two', 'three', 'two', '', '', ''], getline(1, '$')) |
| 680 | call feedkeys("cct\<c-x>\<c-l>\<c-p>\<c-p>\<esc>", 'tnix') |
| 681 | call assert_equal(['one', 'two', 'three', 't', '', '', ''], getline(1, '$')) |
| 682 | call feedkeys("cct\<c-x>\<c-l>\<c-p>\<c-p>\<c-p>\<esc>", 'tnix') |
| 683 | call assert_equal(['one', 'two', 'three', 'three', '', '', ''], getline(1, '$')) |
| 684 | set complete= |
| 685 | call cursor(5, 1) |
| 686 | call feedkeys("A\<c-x>\<c-l>\<c-p>\<c-n>\<esc>", 'tnix') |
| 687 | call assert_equal(['one', 'two', 'three', 'three', "\<c-l>\<c-p>\<c-n>", '', ''], getline(1, '$')) |
| 688 | set complete& |
| 689 | %d |
| 690 | if has("conceal") && has("syntax") |
| 691 | call setline(1, ['foo', 'bar', 'foobar']) |
| 692 | call test_override("char_avail", 1) |
| 693 | set conceallevel=2 concealcursor=n |
| 694 | syn on |
| 695 | syn match ErrorMsg "^bar" |
| 696 | call matchadd("Conceal", 'oo', 10, -1, {'conceal': 'X'}) |
| 697 | func! DoIt() |
| 698 | let g:change=1 |
| 699 | endfunc |
| 700 | au! TextChangedI <buffer> :call DoIt() |
| 701 | |
| 702 | call cursor(2, 1) |
| 703 | call assert_false(exists("g:change")) |
| 704 | call feedkeys("A \<esc>", 'tnix') |
| 705 | call assert_equal(['foo', 'bar ', 'foobar'], getline(1, '$')) |
| 706 | call assert_equal(1, g:change) |
| 707 | |
| 708 | call test_override("char_avail", 0) |
| 709 | call clearmatches() |
| 710 | syn off |
| 711 | au! TextChangedI |
| 712 | delfu DoIt |
| 713 | unlet! g:change |
| 714 | endif |
| 715 | bw! |
| 716 | endfunc |
| 717 | |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 718 | func Test_edit_CTRL_N() |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 719 | " Check keyword completion |
Bram Moolenaar | a1070ea | 2021-02-20 19:21:36 +0100 | [diff] [blame] | 720 | for e in ['latin1', 'utf-8'] |
| 721 | exe 'set encoding=' .. e |
| 722 | new |
| 723 | set complete=. |
| 724 | call setline(1, ['INFER', 'loWER', '', '', ]) |
| 725 | call cursor(3, 1) |
| 726 | call feedkeys("Ai\<c-n>\<cr>\<esc>", "tnix") |
| 727 | call feedkeys("ILO\<c-n>\<cr>\<esc>", 'tnix') |
| 728 | call assert_equal(['INFER', 'loWER', 'i', 'LO', '', ''], getline(1, '$'), e) |
| 729 | %d |
| 730 | call setline(1, ['INFER', 'loWER', '', '', ]) |
| 731 | call cursor(3, 1) |
| 732 | set ignorecase infercase |
| 733 | call feedkeys("Ii\<c-n>\<cr>\<esc>", "tnix") |
| 734 | call feedkeys("ILO\<c-n>\<cr>\<esc>", 'tnix') |
| 735 | call assert_equal(['INFER', 'loWER', 'infer', 'LOWER', '', ''], getline(1, '$'), e) |
Yegappan Lakshmanan | e982586 | 2022-01-03 11:03:48 +0000 | [diff] [blame] | 736 | set noignorecase noinfercase |
| 737 | %d |
| 738 | call setline(1, ['one word', 'two word']) |
| 739 | exe "normal! Goo\<C-P>\<C-X>\<C-P>" |
| 740 | call assert_equal('one word', getline(3)) |
| 741 | %d |
| 742 | set complete& |
Bram Moolenaar | a1070ea | 2021-02-20 19:21:36 +0100 | [diff] [blame] | 743 | bw! |
| 744 | endfor |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 745 | endfunc |
| 746 | |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 747 | func Test_edit_CTRL_O() |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 748 | " Check for CTRL-O in insert mode |
| 749 | new |
| 750 | inoreabbr <buffer> h here some more |
| 751 | call setline(1, ['abc', 'def']) |
| 752 | call cursor(1, 1) |
| 753 | " Ctrl-O after an abbreviation |
| 754 | exe "norm A h\<c-o>:set nu\<cr> text" |
| 755 | call assert_equal(['abc here some more text', 'def'], getline(1, '$')) |
| 756 | call assert_true(&nu) |
| 757 | set nonu |
| 758 | iunabbr <buffer> h |
| 759 | " Ctrl-O at end of line with 've'=onemore |
| 760 | call cursor(1, 1) |
| 761 | call feedkeys("A\<c-o>:let g:a=getpos('.')\<cr>\<esc>", 'tnix') |
| 762 | call assert_equal([0, 1, 23, 0], g:a) |
| 763 | call cursor(1, 1) |
| 764 | set ve=onemore |
| 765 | call feedkeys("A\<c-o>:let g:a=getpos('.')\<cr>\<esc>", 'tnix') |
| 766 | call assert_equal([0, 1, 24, 0], g:a) |
| 767 | set ve= |
| 768 | unlet! g:a |
| 769 | bw! |
| 770 | endfunc |
| 771 | |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 772 | func Test_edit_CTRL_R() |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 773 | " Insert Register |
| 774 | new |
| 775 | call test_override("ALL", 1) |
| 776 | set showcmd |
| 777 | call feedkeys("AFOOBAR eins zwei\<esc>", 'tnix') |
| 778 | call feedkeys("O\<c-r>.", 'tnix') |
| 779 | call feedkeys("O\<c-r>=10*500\<cr>\<esc>", 'tnix') |
| 780 | call feedkeys("O\<c-r>=getreg('=', 1)\<cr>\<esc>", 'tnix') |
| 781 | call assert_equal(["getreg('=', 1)", '5000', "FOOBAR eins zwei", "FOOBAR eins zwei"], getline(1, '$')) |
| 782 | call test_override("ALL", 0) |
| 783 | set noshowcmd |
| 784 | bw! |
| 785 | endfunc |
| 786 | |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 787 | func Test_edit_CTRL_S() |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 788 | " Test pressing CTRL-S (basically only spellfile completion) |
| 789 | " the rest is already covered |
| 790 | new |
| 791 | if !has("spell") |
| 792 | call setline(1, 'vim') |
| 793 | call feedkeys("A\<c-x>ss\<cr>\<esc>", 'tnix') |
| 794 | call assert_equal(['vims', ''], getline(1, '$')) |
| 795 | bw! |
| 796 | return |
| 797 | endif |
| 798 | call setline(1, 'vim') |
| 799 | " spell option not yet set |
| 800 | try |
| 801 | call feedkeys("A\<c-x>\<c-s>\<cr>\<esc>", 'tnix') |
| 802 | catch /^Vim\%((\a\+)\)\=:E756/ |
| 803 | call assert_true(1, 'error caught') |
| 804 | endtry |
| 805 | call assert_equal(['vim', ''], getline(1, '$')) |
| 806 | %d |
| 807 | setl spell spelllang=en |
| 808 | call setline(1, 'vim') |
| 809 | call cursor(1, 1) |
| 810 | call feedkeys("A\<c-x>\<c-s>\<cr>\<esc>", 'tnix') |
| 811 | call assert_equal(['Vim', ''], getline(1, '$')) |
| 812 | %d |
| 813 | call setline(1, 'vim') |
| 814 | call cursor(1, 1) |
| 815 | call feedkeys("A\<c-x>\<c-s>\<down>\<cr>\<esc>", 'tnix') |
| 816 | call assert_equal(['Aim'], getline(1, '$')) |
| 817 | %d |
| 818 | call setline(1, 'vim') |
| 819 | call cursor(1, 1) |
| 820 | call feedkeys("A\<c-x>\<c-s>\<c-p>\<cr>\<esc>", 'tnix') |
| 821 | call assert_equal(['vim', ''], getline(1, '$')) |
| 822 | %d |
| 823 | " empty buffer |
| 824 | call cursor(1, 1) |
| 825 | call feedkeys("A\<c-x>\<c-s>\<c-p>\<cr>\<esc>", 'tnix') |
| 826 | call assert_equal(['', ''], getline(1, '$')) |
| 827 | setl nospell |
| 828 | bw! |
| 829 | endfunc |
| 830 | |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 831 | func Test_edit_CTRL_T() |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 832 | " Check for CTRL-T and CTRL-X CTRL-T in insert mode |
| 833 | " 1) increase indent |
| 834 | new |
| 835 | call setline(1, "abc") |
| 836 | call cursor(1, 1) |
| 837 | call feedkeys("A\<c-t>xyz", 'tnix') |
| 838 | call assert_equal(["\<tab>abcxyz"], getline(1, '$')) |
| 839 | " 2) also when paste option is set |
| 840 | set paste |
| 841 | call setline(1, "abc") |
| 842 | call cursor(1, 1) |
| 843 | call feedkeys("A\<c-t>xyz", 'tnix') |
| 844 | call assert_equal(["\<tab>abcxyz"], getline(1, '$')) |
| 845 | set nopaste |
| 846 | " CTRL-X CTRL-T (thesaurus complete) |
| 847 | call writefile(['angry furious mad enraged'], 'Xthesaurus') |
| 848 | set thesaurus=Xthesaurus |
| 849 | call setline(1, 'mad') |
| 850 | call cursor(1, 1) |
| 851 | call feedkeys("A\<c-x>\<c-t>\<cr>\<esc>", 'tnix') |
| 852 | call assert_equal(['mad', ''], getline(1, '$')) |
| 853 | %d |
| 854 | call setline(1, 'mad') |
| 855 | call cursor(1, 1) |
| 856 | call feedkeys("A\<c-x>\<c-t>\<c-n>\<cr>\<esc>", 'tnix') |
| 857 | call assert_equal(['angry', ''], getline(1, '$')) |
| 858 | %d |
| 859 | call setline(1, 'mad') |
| 860 | call cursor(1, 1) |
| 861 | call feedkeys("A\<c-x>\<c-t>\<c-n>\<c-n>\<cr>\<esc>", 'tnix') |
| 862 | call assert_equal(['furious', ''], getline(1, '$')) |
| 863 | %d |
| 864 | call setline(1, 'mad') |
| 865 | call cursor(1, 1) |
| 866 | call feedkeys("A\<c-x>\<c-t>\<c-n>\<c-n>\<c-n>\<cr>\<esc>", 'tnix') |
| 867 | call assert_equal(['enraged', ''], getline(1, '$')) |
| 868 | %d |
| 869 | call setline(1, 'mad') |
| 870 | call cursor(1, 1) |
| 871 | call feedkeys("A\<c-x>\<c-t>\<c-n>\<c-n>\<c-n>\<c-n>\<cr>\<esc>", 'tnix') |
| 872 | call assert_equal(['mad', ''], getline(1, '$')) |
| 873 | %d |
| 874 | call setline(1, 'mad') |
| 875 | call cursor(1, 1) |
| 876 | call feedkeys("A\<c-x>\<c-t>\<c-n>\<c-n>\<c-n>\<c-n>\<c-n>\<cr>\<esc>", 'tnix') |
| 877 | call assert_equal(['mad', ''], getline(1, '$')) |
| 878 | " Using <c-p> <c-n> when 'complete' is empty |
| 879 | set complete= |
| 880 | %d |
| 881 | call setline(1, 'mad') |
| 882 | call cursor(1, 1) |
| 883 | call feedkeys("A\<c-x>\<c-t>\<c-n>\<cr>\<esc>", 'tnix') |
| 884 | call assert_equal(['angry', ''], getline(1, '$')) |
| 885 | %d |
| 886 | call setline(1, 'mad') |
| 887 | call cursor(1, 1) |
| 888 | call feedkeys("A\<c-x>\<c-t>\<c-p>\<cr>\<esc>", 'tnix') |
| 889 | call assert_equal(['mad', ''], getline(1, '$')) |
| 890 | set complete& |
| 891 | |
| 892 | set thesaurus= |
| 893 | %d |
| 894 | call setline(1, 'mad') |
| 895 | call cursor(1, 1) |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 896 | let v:testing = 1 |
| 897 | try |
| 898 | call feedkeys("A\<c-x>\<c-t>\<esc>", 'tnix') |
| 899 | catch |
| 900 | " error sleeps 2 seconds, when v:testing is not set |
| 901 | let v:testing = 0 |
| 902 | endtry |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 903 | call assert_equal(['mad'], getline(1, '$')) |
| 904 | call delete('Xthesaurus') |
| 905 | bw! |
| 906 | endfunc |
| 907 | |
Yegappan Lakshmanan | e982586 | 2022-01-03 11:03:48 +0000 | [diff] [blame] | 908 | " Test thesaurus completion with different encodings |
| 909 | func Test_thesaurus_complete_with_encoding() |
| 910 | call writefile(['angry furious mad enraged'], 'Xthesaurus') |
| 911 | set thesaurus=Xthesaurus |
| 912 | for e in ['latin1', 'utf-8'] |
| 913 | exe 'set encoding=' .. e |
| 914 | new |
| 915 | call setline(1, 'mad') |
| 916 | call cursor(1, 1) |
| 917 | call feedkeys("A\<c-x>\<c-t>\<cr>\<esc>", 'tnix') |
| 918 | call assert_equal(['mad', ''], getline(1, '$')) |
| 919 | bw! |
| 920 | endfor |
| 921 | set thesaurus= |
| 922 | call delete('Xthesaurus') |
| 923 | endfunc |
| 924 | |
Yegappan Lakshmanan | 160e994 | 2021-10-16 15:41:29 +0100 | [diff] [blame] | 925 | " Test 'thesaurusfunc' |
| 926 | func MyThesaurus(findstart, base) |
| 927 | let mythesaurus = [ |
| 928 | \ #{word: "happy", |
| 929 | \ synonyms: "cheerful,blissful,flying high,looking good,peppy"}, |
| 930 | \ #{word: "kind", |
| 931 | \ synonyms: "amiable,bleeding-heart,heart in right place"}] |
| 932 | if a:findstart |
| 933 | " locate the start of the word |
| 934 | let line = getline('.') |
| 935 | let start = col('.') - 1 |
| 936 | while start > 0 && line[start - 1] =~ '\a' |
| 937 | let start -= 1 |
| 938 | endwhile |
| 939 | return start |
| 940 | else |
| 941 | " find strings matching with "a:base" |
| 942 | let res = [] |
| 943 | for w in mythesaurus |
| 944 | if w.word =~ '^' . a:base |
| 945 | call add(res, w.word) |
| 946 | call extend(res, split(w.synonyms, ",")) |
| 947 | endif |
| 948 | endfor |
| 949 | return res |
| 950 | endif |
| 951 | endfunc |
| 952 | |
| 953 | func Test_thesaurus_func() |
| 954 | new |
Bram Moolenaar | f4d8b76 | 2021-10-17 14:13:09 +0100 | [diff] [blame] | 955 | set thesaurus=notused |
| 956 | set thesaurusfunc=NotUsed |
| 957 | setlocal thesaurusfunc=MyThesaurus |
Yegappan Lakshmanan | 160e994 | 2021-10-16 15:41:29 +0100 | [diff] [blame] | 958 | call setline(1, "an ki") |
| 959 | call cursor(1, 1) |
| 960 | call feedkeys("A\<c-x>\<c-t>\<c-n>\<cr>\<esc>", 'tnix') |
| 961 | call assert_equal(['an amiable', ''], getline(1, '$')) |
Bram Moolenaar | f4d8b76 | 2021-10-17 14:13:09 +0100 | [diff] [blame] | 962 | |
| 963 | setlocal thesaurusfunc=NonExistingFunc |
| 964 | call assert_fails("normal $a\<C-X>\<C-T>", 'E117:') |
| 965 | |
| 966 | setlocal thesaurusfunc= |
Yegappan Lakshmanan | 160e994 | 2021-10-16 15:41:29 +0100 | [diff] [blame] | 967 | set thesaurusfunc=NonExistingFunc |
| 968 | call assert_fails("normal $a\<C-X>\<C-T>", 'E117:') |
Yegappan Lakshmanan | 160e994 | 2021-10-16 15:41:29 +0100 | [diff] [blame] | 969 | %bw! |
Bram Moolenaar | f4d8b76 | 2021-10-17 14:13:09 +0100 | [diff] [blame] | 970 | |
| 971 | set thesaurusfunc= |
| 972 | set thesaurus= |
Yegappan Lakshmanan | 160e994 | 2021-10-16 15:41:29 +0100 | [diff] [blame] | 973 | endfunc |
| 974 | |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 975 | func Test_edit_CTRL_U() |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 976 | " Test 'completefunc' |
| 977 | new |
| 978 | " -1, -2 and -3 are special return values |
| 979 | let g:special=0 |
| 980 | fun! CompleteMonths(findstart, base) |
| 981 | if a:findstart |
| 982 | " locate the start of the word |
| 983 | return g:special |
| 984 | else |
| 985 | " find months matching with "a:base" |
| 986 | let res = [] |
| 987 | for m in split("Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec") |
| 988 | if m =~ '^\c'.a:base |
| 989 | call add(res, {'word': m, 'abbr': m.' Month', 'icase': 0}) |
| 990 | endif |
| 991 | endfor |
| 992 | return {'words': res, 'refresh': 'always'} |
| 993 | endif |
| 994 | endfun |
| 995 | set completefunc=CompleteMonths |
| 996 | call setline(1, ['', '']) |
| 997 | call cursor(1, 1) |
| 998 | call feedkeys("AX\<c-x>\<c-u>\<cr>\<esc>", 'tnix') |
| 999 | call assert_equal(['X', '', ''], getline(1, '$')) |
| 1000 | %d |
| 1001 | let g:special=-1 |
| 1002 | call feedkeys("AX\<c-x>\<c-u>\<cr>\<esc>", 'tnix') |
| 1003 | call assert_equal(['XJan', ''], getline(1, '$')) |
| 1004 | %d |
| 1005 | let g:special=-2 |
| 1006 | call feedkeys("AX\<c-x>\<c-u>\<cr>\<esc>", 'tnix') |
| 1007 | call assert_equal(['X', ''], getline(1, '$')) |
| 1008 | %d |
| 1009 | let g:special=-3 |
| 1010 | call feedkeys("AX\<c-x>\<c-u>\<cr>\<esc>", 'tnix') |
| 1011 | call assert_equal(['X', ''], getline(1, '$')) |
| 1012 | %d |
| 1013 | let g:special=0 |
| 1014 | call feedkeys("AM\<c-x>\<c-u>\<cr>\<esc>", 'tnix') |
| 1015 | call assert_equal(['Mar', ''], getline(1, '$')) |
| 1016 | %d |
| 1017 | call feedkeys("AM\<c-x>\<c-u>\<c-n>\<cr>\<esc>", 'tnix') |
| 1018 | call assert_equal(['May', ''], getline(1, '$')) |
| 1019 | %d |
| 1020 | call feedkeys("AM\<c-x>\<c-u>\<c-n>\<c-n>\<cr>\<esc>", 'tnix') |
| 1021 | call assert_equal(['M', ''], getline(1, '$')) |
| 1022 | delfu CompleteMonths |
| 1023 | %d |
| 1024 | try |
| 1025 | call feedkeys("A\<c-x>\<c-u>", 'tnix') |
| 1026 | call assert_fails(1, 'unknown completion function') |
| 1027 | catch /^Vim\%((\a\+)\)\=:E117/ |
| 1028 | call assert_true(1, 'E117 error caught') |
| 1029 | endtry |
| 1030 | set completefunc= |
| 1031 | bw! |
| 1032 | endfunc |
| 1033 | |
Bram Moolenaar | ff06f28 | 2020-04-21 22:01:14 +0200 | [diff] [blame] | 1034 | func Test_edit_completefunc_delete() |
| 1035 | func CompleteFunc(findstart, base) |
| 1036 | if a:findstart == 1 |
| 1037 | return col('.') - 1 |
| 1038 | endif |
| 1039 | normal dd |
| 1040 | return ['a', 'b'] |
| 1041 | endfunc |
| 1042 | new |
| 1043 | set completefunc=CompleteFunc |
| 1044 | call setline(1, ['', 'abcd', '']) |
| 1045 | 2d |
Bram Moolenaar | 6adb9ea | 2020-04-30 22:31:18 +0200 | [diff] [blame] | 1046 | call assert_fails("normal 2G$a\<C-X>\<C-U>", 'E578:') |
Bram Moolenaar | ff06f28 | 2020-04-21 22:01:14 +0200 | [diff] [blame] | 1047 | bwipe! |
| 1048 | endfunc |
| 1049 | |
| 1050 | |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 1051 | func Test_edit_CTRL_Z() |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 1052 | " Ctrl-Z when insertmode is not set inserts it literally |
| 1053 | new |
| 1054 | call setline(1, 'abc') |
| 1055 | call feedkeys("A\<c-z>\<esc>", 'tnix') |
| 1056 | call assert_equal(["abc\<c-z>"], getline(1,'$')) |
| 1057 | bw! |
| 1058 | " TODO: How to Test Ctrl-Z in insert mode, e.g. suspend? |
| 1059 | endfunc |
| 1060 | |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 1061 | func Test_edit_DROP() |
Bram Moolenaar | 6d91bcb | 2020-08-12 18:50:36 +0200 | [diff] [blame] | 1062 | CheckFeature dnd |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 1063 | new |
| 1064 | call setline(1, ['abc def ghi']) |
| 1065 | call cursor(1, 1) |
| 1066 | try |
| 1067 | call feedkeys("i\<Drop>\<Esc>", 'tnix') |
| 1068 | call assert_fails(1, 'Invalid register name') |
| 1069 | catch /^Vim\%((\a\+)\)\=:E353/ |
| 1070 | call assert_true(1, 'error caught') |
| 1071 | endtry |
| 1072 | bw! |
| 1073 | endfunc |
| 1074 | |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 1075 | func Test_edit_CTRL_V() |
Bram Moolenaar | 6d91bcb | 2020-08-12 18:50:36 +0200 | [diff] [blame] | 1076 | CheckFeature ebcdic |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 1077 | new |
| 1078 | call setline(1, ['abc']) |
| 1079 | call cursor(2, 1) |
| 1080 | " force some redraws |
| 1081 | set showmode showcmd |
| 1082 | "call test_override_char_avail(1) |
| 1083 | call test_override('ALL', 1) |
| 1084 | call feedkeys("A\<c-v>\<c-n>\<c-v>\<c-l>\<c-v>\<c-b>\<esc>", 'tnix') |
| 1085 | call assert_equal(["abc\x0e\x0c\x02"], getline(1, '$')) |
| 1086 | |
| 1087 | if has("rightleft") && exists("+rl") |
| 1088 | set rl |
| 1089 | call setline(1, ['abc']) |
| 1090 | call cursor(2, 1) |
| 1091 | call feedkeys("A\<c-v>\<c-n>\<c-v>\<c-l>\<c-v>\<c-b>\<esc>", 'tnix') |
| 1092 | call assert_equal(["abc\x0e\x0c\x02"], getline(1, '$')) |
| 1093 | set norl |
| 1094 | endif |
| 1095 | |
| 1096 | call test_override('ALL', 0) |
| 1097 | set noshowmode showcmd |
| 1098 | bw! |
| 1099 | endfunc |
| 1100 | |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 1101 | func Test_edit_F1() |
Bram Moolenaar | 5a4c308 | 2019-12-01 15:23:11 +0100 | [diff] [blame] | 1102 | CheckFeature quickfix |
| 1103 | |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 1104 | " Pressing <f1> |
| 1105 | new |
| 1106 | call feedkeys(":set im\<cr>\<f1>\<c-l>", 'tnix') |
| 1107 | set noinsertmode |
| 1108 | call assert_equal('help', &buftype) |
| 1109 | bw |
| 1110 | bw |
| 1111 | endfunc |
| 1112 | |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 1113 | func Test_edit_F21() |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 1114 | " Pressing <f21> |
| 1115 | " sends a netbeans command |
Bram Moolenaar | 6d91bcb | 2020-08-12 18:50:36 +0200 | [diff] [blame] | 1116 | CheckFeature netbeans_intg |
| 1117 | new |
| 1118 | " I have no idea what this is supposed to do :) |
| 1119 | call feedkeys("A\<F21>\<F1>\<esc>", 'tnix') |
| 1120 | bw |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 1121 | endfunc |
| 1122 | |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 1123 | func Test_edit_HOME_END() |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 1124 | " Test Home/End Keys |
| 1125 | new |
| 1126 | set foldopen+=hor |
| 1127 | call setline(1, ['abc', 'def']) |
| 1128 | call cursor(1, 1) |
| 1129 | call feedkeys("AX\<Home>Y\<esc>", 'tnix') |
| 1130 | call cursor(2, 1) |
| 1131 | call feedkeys("iZ\<End>Y\<esc>", 'tnix') |
| 1132 | call assert_equal(['YabcX', 'ZdefY'], getline(1, '$')) |
| 1133 | |
| 1134 | set foldopen-=hor |
| 1135 | bw! |
| 1136 | endfunc |
| 1137 | |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 1138 | func Test_edit_INS() |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 1139 | " Test for Pressing <Insert> |
| 1140 | new |
| 1141 | call setline(1, ['abc', 'def']) |
| 1142 | call cursor(1, 1) |
| 1143 | call feedkeys("i\<Insert>ZYX>", 'tnix') |
| 1144 | call assert_equal(['ZYX>', 'def'], getline(1, '$')) |
| 1145 | call setline(1, ['abc', 'def']) |
| 1146 | call cursor(1, 1) |
| 1147 | call feedkeys("i\<Insert>Z\<Insert>YX>", 'tnix') |
| 1148 | call assert_equal(['ZYX>bc', 'def'], getline(1, '$')) |
| 1149 | bw! |
| 1150 | endfunc |
| 1151 | |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 1152 | func Test_edit_LEFT_RIGHT() |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 1153 | " Left, Shift-Left, Right, Shift-Right |
| 1154 | new |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 1155 | call setline(1, ['abc def ghi', 'ABC DEF GHI', 'ZZZ YYY XXX']) |
| 1156 | let _ww=&ww |
| 1157 | set ww= |
| 1158 | call cursor(2, 1) |
| 1159 | call feedkeys("i\<left>\<esc>", 'tnix') |
| 1160 | call assert_equal([0, 2, 1, 0], getpos('.')) |
| 1161 | " Is this a bug, <s-left> does not respect whichwrap option |
| 1162 | call feedkeys("i\<s-left>\<esc>", 'tnix') |
| 1163 | call assert_equal([0, 1, 8, 0], getpos('.')) |
| 1164 | call feedkeys("i". repeat("\<s-left>", 3). "\<esc>", 'tnix') |
| 1165 | call assert_equal([0, 1, 1, 0], getpos('.')) |
| 1166 | call feedkeys("i\<right>\<esc>", 'tnix') |
| 1167 | call assert_equal([0, 1, 1, 0], getpos('.')) |
| 1168 | call feedkeys("i\<right>\<right>\<esc>", 'tnix') |
| 1169 | call assert_equal([0, 1, 2, 0], getpos('.')) |
| 1170 | call feedkeys("A\<right>\<esc>", 'tnix') |
| 1171 | call assert_equal([0, 1, 11, 0], getpos('.')) |
| 1172 | call feedkeys("A\<s-right>\<esc>", 'tnix') |
| 1173 | call assert_equal([0, 2, 1, 0], getpos('.')) |
| 1174 | call feedkeys("i\<s-right>\<esc>", 'tnix') |
| 1175 | call assert_equal([0, 2, 4, 0], getpos('.')) |
| 1176 | call cursor(3, 11) |
| 1177 | call feedkeys("A\<right>\<esc>", 'tnix') |
| 1178 | call feedkeys("A\<s-right>\<esc>", 'tnix') |
| 1179 | call assert_equal([0, 3, 11, 0], getpos('.')) |
| 1180 | call cursor(2, 11) |
| 1181 | " <S-Right> does not respect 'whichwrap' option |
| 1182 | call feedkeys("A\<s-right>\<esc>", 'tnix') |
| 1183 | call assert_equal([0, 3, 1, 0], getpos('.')) |
| 1184 | " Check motion when 'whichwrap' contains cursor keys for insert mode |
| 1185 | set ww+=[,] |
| 1186 | call cursor(2, 1) |
| 1187 | call feedkeys("i\<left>\<esc>", 'tnix') |
| 1188 | call assert_equal([0, 1, 11, 0], getpos('.')) |
| 1189 | call cursor(2, 11) |
| 1190 | call feedkeys("A\<right>\<esc>", 'tnix') |
| 1191 | call assert_equal([0, 3, 1, 0], getpos('.')) |
| 1192 | call cursor(2, 11) |
| 1193 | call feedkeys("A\<s-right>\<esc>", 'tnix') |
| 1194 | call assert_equal([0, 3, 1, 0], getpos('.')) |
| 1195 | let &ww = _ww |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 1196 | bw! |
| 1197 | endfunc |
| 1198 | |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 1199 | func Test_edit_MOUSE() |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 1200 | " This is a simple test, since we not really using the mouse here |
Bram Moolenaar | 6d91bcb | 2020-08-12 18:50:36 +0200 | [diff] [blame] | 1201 | CheckFeature mouse |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 1202 | 10new |
| 1203 | call setline(1, range(1, 100)) |
| 1204 | call cursor(1, 1) |
| 1205 | set mouse=a |
| 1206 | call feedkeys("A\<ScrollWheelDown>\<esc>", 'tnix') |
| 1207 | call assert_equal([0, 4, 1, 0], getpos('.')) |
| 1208 | " This should move by one pageDown, but only moves |
| 1209 | " by one line when the test is run... |
| 1210 | call feedkeys("A\<S-ScrollWheelDown>\<esc>", 'tnix') |
| 1211 | call assert_equal([0, 5, 1, 0], getpos('.')) |
| 1212 | set nostartofline |
| 1213 | call feedkeys("A\<C-ScrollWheelDown>\<esc>", 'tnix') |
| 1214 | call assert_equal([0, 6, 1, 0], getpos('.')) |
| 1215 | call feedkeys("A\<LeftMouse>\<esc>", 'tnix') |
| 1216 | call assert_equal([0, 6, 1, 0], getpos('.')) |
| 1217 | call feedkeys("A\<RightMouse>\<esc>", 'tnix') |
| 1218 | call assert_equal([0, 6, 1, 0], getpos('.')) |
| 1219 | call cursor(1, 100) |
| 1220 | norm! zt |
| 1221 | " this should move by a screen up, but when the test |
| 1222 | " is run, it moves up to the top of the buffer... |
| 1223 | call feedkeys("A\<ScrollWheelUp>\<esc>", 'tnix') |
| 1224 | call assert_equal([0, 1, 1, 0], getpos('.')) |
| 1225 | call cursor(1, 30) |
| 1226 | norm! zt |
| 1227 | call feedkeys("A\<S-ScrollWheelUp>\<esc>", 'tnix') |
| 1228 | call assert_equal([0, 1, 1, 0], getpos('.')) |
| 1229 | call cursor(1, 30) |
| 1230 | norm! zt |
| 1231 | call feedkeys("A\<C-ScrollWheelUp>\<esc>", 'tnix') |
| 1232 | call assert_equal([0, 1, 1, 0], getpos('.')) |
| 1233 | %d |
| 1234 | call setline(1, repeat(["12345678901234567890"], 100)) |
| 1235 | call cursor(2, 1) |
| 1236 | call feedkeys("A\<ScrollWheelRight>\<esc>", 'tnix') |
| 1237 | call assert_equal([0, 2, 20, 0], getpos('.')) |
| 1238 | call feedkeys("A\<ScrollWheelLeft>\<esc>", 'tnix') |
| 1239 | call assert_equal([0, 2, 20, 0], getpos('.')) |
| 1240 | call feedkeys("A\<S-ScrollWheelRight>\<esc>", 'tnix') |
| 1241 | call assert_equal([0, 2, 20, 0], getpos('.')) |
| 1242 | call feedkeys("A\<S-ScrollWheelLeft>\<esc>", 'tnix') |
| 1243 | call assert_equal([0, 2, 20, 0], getpos('.')) |
| 1244 | call feedkeys("A\<C-ScrollWheelRight>\<esc>", 'tnix') |
| 1245 | call assert_equal([0, 2, 20, 0], getpos('.')) |
| 1246 | call feedkeys("A\<C-ScrollWheelLeft>\<esc>", 'tnix') |
| 1247 | call assert_equal([0, 2, 20, 0], getpos('.')) |
| 1248 | set mouse& startofline |
| 1249 | bw! |
| 1250 | endfunc |
| 1251 | |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 1252 | func Test_edit_PAGEUP_PAGEDOWN() |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 1253 | 10new |
| 1254 | call setline(1, repeat(['abc def ghi'], 30)) |
| 1255 | call cursor(1, 1) |
| 1256 | call feedkeys("i\<PageDown>\<esc>", 'tnix') |
| 1257 | call assert_equal([0, 9, 1, 0], getpos('.')) |
| 1258 | call feedkeys("i\<PageDown>\<esc>", 'tnix') |
| 1259 | call assert_equal([0, 17, 1, 0], getpos('.')) |
| 1260 | call feedkeys("i\<PageDown>\<esc>", 'tnix') |
| 1261 | call assert_equal([0, 25, 1, 0], getpos('.')) |
| 1262 | call feedkeys("i\<PageDown>\<esc>", 'tnix') |
| 1263 | call assert_equal([0, 30, 1, 0], getpos('.')) |
| 1264 | call feedkeys("i\<PageDown>\<esc>", 'tnix') |
| 1265 | call assert_equal([0, 30, 1, 0], getpos('.')) |
| 1266 | call feedkeys("A\<PageUp>\<esc>", 'tnix') |
| 1267 | call assert_equal([0, 29, 1, 0], getpos('.')) |
| 1268 | call feedkeys("A\<PageUp>\<esc>", 'tnix') |
| 1269 | call assert_equal([0, 21, 1, 0], getpos('.')) |
| 1270 | call feedkeys("A\<PageUp>\<esc>", 'tnix') |
| 1271 | call assert_equal([0, 13, 1, 0], getpos('.')) |
| 1272 | call feedkeys("A\<PageUp>\<esc>", 'tnix') |
| 1273 | call assert_equal([0, 5, 1, 0], getpos('.')) |
| 1274 | call feedkeys("A\<PageUp>\<esc>", 'tnix') |
| 1275 | call assert_equal([0, 5, 11, 0], getpos('.')) |
| 1276 | " <S-Up> is the same as <PageUp> |
| 1277 | " <S-Down> is the same as <PageDown> |
| 1278 | call cursor(1, 1) |
| 1279 | call feedkeys("i\<S-Down>\<esc>", 'tnix') |
| 1280 | call assert_equal([0, 9, 1, 0], getpos('.')) |
| 1281 | call feedkeys("i\<S-Down>\<esc>", 'tnix') |
| 1282 | call assert_equal([0, 17, 1, 0], getpos('.')) |
| 1283 | call feedkeys("i\<S-Down>\<esc>", 'tnix') |
| 1284 | call assert_equal([0, 25, 1, 0], getpos('.')) |
| 1285 | call feedkeys("i\<S-Down>\<esc>", 'tnix') |
| 1286 | call assert_equal([0, 30, 1, 0], getpos('.')) |
| 1287 | call feedkeys("i\<S-Down>\<esc>", 'tnix') |
| 1288 | call assert_equal([0, 30, 1, 0], getpos('.')) |
| 1289 | call feedkeys("A\<S-Up>\<esc>", 'tnix') |
| 1290 | call assert_equal([0, 29, 1, 0], getpos('.')) |
| 1291 | call feedkeys("A\<S-Up>\<esc>", 'tnix') |
| 1292 | call assert_equal([0, 21, 1, 0], getpos('.')) |
| 1293 | call feedkeys("A\<S-Up>\<esc>", 'tnix') |
| 1294 | call assert_equal([0, 13, 1, 0], getpos('.')) |
| 1295 | call feedkeys("A\<S-Up>\<esc>", 'tnix') |
| 1296 | call assert_equal([0, 5, 1, 0], getpos('.')) |
| 1297 | call feedkeys("A\<S-Up>\<esc>", 'tnix') |
| 1298 | call assert_equal([0, 5, 11, 0], getpos('.')) |
| 1299 | set nostartofline |
| 1300 | call cursor(30, 11) |
| 1301 | norm! zt |
| 1302 | call feedkeys("A\<PageUp>\<esc>", 'tnix') |
| 1303 | call assert_equal([0, 29, 11, 0], getpos('.')) |
| 1304 | call feedkeys("A\<PageUp>\<esc>", 'tnix') |
| 1305 | call assert_equal([0, 21, 11, 0], getpos('.')) |
| 1306 | call feedkeys("A\<PageUp>\<esc>", 'tnix') |
| 1307 | call assert_equal([0, 13, 11, 0], getpos('.')) |
| 1308 | call feedkeys("A\<PageUp>\<esc>", 'tnix') |
| 1309 | call assert_equal([0, 5, 11, 0], getpos('.')) |
| 1310 | call feedkeys("A\<PageUp>\<esc>", 'tnix') |
| 1311 | call assert_equal([0, 5, 11, 0], getpos('.')) |
| 1312 | call cursor(1, 1) |
| 1313 | call feedkeys("A\<PageDown>\<esc>", 'tnix') |
| 1314 | call assert_equal([0, 9, 11, 0], getpos('.')) |
| 1315 | call feedkeys("A\<PageDown>\<esc>", 'tnix') |
| 1316 | call assert_equal([0, 17, 11, 0], getpos('.')) |
| 1317 | call feedkeys("A\<PageDown>\<esc>", 'tnix') |
| 1318 | call assert_equal([0, 25, 11, 0], getpos('.')) |
| 1319 | call feedkeys("A\<PageDown>\<esc>", 'tnix') |
| 1320 | call assert_equal([0, 30, 11, 0], getpos('.')) |
| 1321 | call feedkeys("A\<PageDown>\<esc>", 'tnix') |
| 1322 | call assert_equal([0, 30, 11, 0], getpos('.')) |
| 1323 | " <S-Up> is the same as <PageUp> |
| 1324 | " <S-Down> is the same as <PageDown> |
| 1325 | call cursor(30, 11) |
| 1326 | norm! zt |
| 1327 | call feedkeys("A\<S-Up>\<esc>", 'tnix') |
| 1328 | call assert_equal([0, 29, 11, 0], getpos('.')) |
| 1329 | call feedkeys("A\<S-Up>\<esc>", 'tnix') |
| 1330 | call assert_equal([0, 21, 11, 0], getpos('.')) |
| 1331 | call feedkeys("A\<S-Up>\<esc>", 'tnix') |
| 1332 | call assert_equal([0, 13, 11, 0], getpos('.')) |
| 1333 | call feedkeys("A\<S-Up>\<esc>", 'tnix') |
| 1334 | call assert_equal([0, 5, 11, 0], getpos('.')) |
| 1335 | call feedkeys("A\<S-Up>\<esc>", 'tnix') |
| 1336 | call assert_equal([0, 5, 11, 0], getpos('.')) |
| 1337 | call cursor(1, 1) |
| 1338 | call feedkeys("A\<S-Down>\<esc>", 'tnix') |
| 1339 | call assert_equal([0, 9, 11, 0], getpos('.')) |
| 1340 | call feedkeys("A\<S-Down>\<esc>", 'tnix') |
| 1341 | call assert_equal([0, 17, 11, 0], getpos('.')) |
| 1342 | call feedkeys("A\<S-Down>\<esc>", 'tnix') |
| 1343 | call assert_equal([0, 25, 11, 0], getpos('.')) |
| 1344 | call feedkeys("A\<S-Down>\<esc>", 'tnix') |
| 1345 | call assert_equal([0, 30, 11, 0], getpos('.')) |
| 1346 | call feedkeys("A\<S-Down>\<esc>", 'tnix') |
| 1347 | call assert_equal([0, 30, 11, 0], getpos('.')) |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 1348 | bw! |
| 1349 | endfunc |
| 1350 | |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 1351 | func Test_edit_forbidden() |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 1352 | new |
| 1353 | " 1) edit in the sandbox is not allowed |
| 1354 | call setline(1, 'a') |
| 1355 | com! Sandbox :sandbox call feedkeys("i\<del>\<esc>", 'tnix') |
| 1356 | call assert_fails(':Sandbox', 'E48:') |
| 1357 | com! Sandbox :sandbox exe "norm! i\<del>" |
| 1358 | call assert_fails(':Sandbox', 'E48:') |
| 1359 | delcom Sandbox |
| 1360 | call assert_equal(['a'], getline(1,'$')) |
Bram Moolenaar | 52797ba | 2021-12-16 14:45:13 +0000 | [diff] [blame] | 1361 | |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 1362 | " 2) edit with textlock set |
| 1363 | fu! DoIt() |
| 1364 | call feedkeys("i\<del>\<esc>", 'tnix') |
| 1365 | endfu |
| 1366 | au InsertCharPre <buffer> :call DoIt() |
| 1367 | try |
| 1368 | call feedkeys("ix\<esc>", 'tnix') |
| 1369 | call assert_fails(1, 'textlock') |
Bram Moolenaar | ff06f28 | 2020-04-21 22:01:14 +0200 | [diff] [blame] | 1370 | catch /^Vim\%((\a\+)\)\=:E565/ " catch E565: not allowed here |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 1371 | endtry |
| 1372 | " TODO: Might be a bug: should x really be inserted here |
| 1373 | call assert_equal(['xa'], getline(1, '$')) |
| 1374 | delfu DoIt |
| 1375 | try |
| 1376 | call feedkeys("ix\<esc>", 'tnix') |
| 1377 | call assert_fails(1, 'unknown function') |
| 1378 | catch /^Vim\%((\a\+)\)\=:E117/ " catch E117: unknown function |
| 1379 | endtry |
| 1380 | au! InsertCharPre |
Bram Moolenaar | 52797ba | 2021-12-16 14:45:13 +0000 | [diff] [blame] | 1381 | |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 1382 | " 3) edit when completion is shown |
| 1383 | fun! Complete(findstart, base) |
| 1384 | if a:findstart |
| 1385 | return col('.') |
| 1386 | else |
| 1387 | call feedkeys("i\<del>\<esc>", 'tnix') |
| 1388 | return [] |
| 1389 | endif |
| 1390 | endfun |
| 1391 | set completefunc=Complete |
| 1392 | try |
| 1393 | call feedkeys("i\<c-x>\<c-u>\<esc>", 'tnix') |
| 1394 | call assert_fails(1, 'change in complete function') |
Bram Moolenaar | ff06f28 | 2020-04-21 22:01:14 +0200 | [diff] [blame] | 1395 | catch /^Vim\%((\a\+)\)\=:E565/ " catch E565 |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 1396 | endtry |
| 1397 | delfu Complete |
| 1398 | set completefunc= |
Bram Moolenaar | 52797ba | 2021-12-16 14:45:13 +0000 | [diff] [blame] | 1399 | |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 1400 | if has("rightleft") && exists("+fkmap") |
| 1401 | " 4) 'R' when 'fkmap' and 'revins' is set. |
| 1402 | set revins fkmap |
| 1403 | try |
| 1404 | normal Ri |
| 1405 | call assert_fails(1, "R with 'fkmap' and 'ri' set") |
| 1406 | catch |
| 1407 | finally |
| 1408 | set norevins nofkmap |
| 1409 | endtry |
| 1410 | endif |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 1411 | bw! |
| 1412 | endfunc |
| 1413 | |
Bram Moolenaar | 1e11536 | 2019-01-09 23:01:02 +0100 | [diff] [blame] | 1414 | func Test_edit_rightleft() |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 1415 | " Cursor in rightleft mode moves differently |
Bram Moolenaar | 845e0ee | 2020-06-20 16:05:32 +0200 | [diff] [blame] | 1416 | CheckFeature rightleft |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 1417 | call NewWindow(10, 20) |
| 1418 | call setline(1, ['abc', 'def', 'ghi']) |
| 1419 | call cursor(1, 2) |
| 1420 | set rightleft |
| 1421 | " Screen looks as expected |
| 1422 | let lines = ScreenLines([1, 4], winwidth(0)) |
| 1423 | let expect = [ |
| 1424 | \" cba", |
| 1425 | \" fed", |
| 1426 | \" ihg", |
| 1427 | \" ~"] |
| 1428 | call assert_equal(join(expect, "\n"), join(lines, "\n")) |
| 1429 | " 2) right moves to the left |
| 1430 | call feedkeys("i\<right>\<esc>x", 'txin') |
| 1431 | call assert_equal(['bc', 'def', 'ghi'], getline(1,'$')) |
| 1432 | call cursor(1, 2) |
| 1433 | call feedkeys("i\<s-right>\<esc>", 'txin') |
| 1434 | call cursor(1, 2) |
| 1435 | call feedkeys("i\<c-right>\<esc>", 'txin') |
| 1436 | " Screen looks as expected |
| 1437 | let lines = ScreenLines([1, 4], winwidth(0)) |
| 1438 | let expect = [ |
| 1439 | \" cb", |
| 1440 | \" fed", |
| 1441 | \" ihg", |
| 1442 | \" ~"] |
| 1443 | call assert_equal(join(expect, "\n"), join(lines, "\n")) |
| 1444 | " 2) left moves to the right |
| 1445 | call setline(1, ['abc', 'def', 'ghi']) |
| 1446 | call cursor(1, 2) |
| 1447 | call feedkeys("i\<left>\<esc>x", 'txin') |
| 1448 | call assert_equal(['ac', 'def', 'ghi'], getline(1,'$')) |
| 1449 | call cursor(1, 2) |
| 1450 | call feedkeys("i\<s-left>\<esc>", 'txin') |
| 1451 | call cursor(1, 2) |
| 1452 | call feedkeys("i\<c-left>\<esc>", 'txin') |
| 1453 | " Screen looks as expected |
| 1454 | let lines = ScreenLines([1, 4], winwidth(0)) |
| 1455 | let expect = [ |
| 1456 | \" ca", |
| 1457 | \" fed", |
| 1458 | \" ihg", |
| 1459 | \" ~"] |
| 1460 | call assert_equal(join(expect, "\n"), join(lines, "\n")) |
Bram Moolenaar | 845e0ee | 2020-06-20 16:05:32 +0200 | [diff] [blame] | 1461 | %d _ |
| 1462 | call test_override('redraw_flag', 1) |
| 1463 | call test_override('char_avail', 1) |
| 1464 | call feedkeys("a\<C-V>x41", "xt") |
| 1465 | redraw! |
| 1466 | call assert_equal(repeat(' ', 19) .. 'A', Screenline(1)) |
| 1467 | call test_override('ALL', 0) |
Bram Moolenaar | eb992cb | 2017-03-09 18:20:16 +0100 | [diff] [blame] | 1468 | set norightleft |
| 1469 | bw! |
| 1470 | endfunc |
Bram Moolenaar | 658a3a2 | 2017-03-31 22:27:12 +0200 | [diff] [blame] | 1471 | |
| 1472 | func Test_edit_complete_very_long_name() |
Bram Moolenaar | 6d91bcb | 2020-08-12 18:50:36 +0200 | [diff] [blame] | 1473 | " Long directory names only work on Unix. |
| 1474 | CheckUnix |
Bram Moolenaar | 15ecbd6 | 2017-04-07 14:10:48 +0200 | [diff] [blame] | 1475 | |
| 1476 | let dirname = getcwd() . "/Xdir" |
| 1477 | let longdirname = dirname . repeat('/' . repeat('d', 255), 4) |
| 1478 | try |
| 1479 | call mkdir(longdirname, 'p') |
| 1480 | catch /E739:/ |
| 1481 | " Long directory name probably not supported. |
| 1482 | call delete(dirname, 'rf') |
| 1483 | return |
| 1484 | endtry |
| 1485 | |
Bram Moolenaar | f8191c5 | 2019-05-18 17:22:54 +0200 | [diff] [blame] | 1486 | " Try to get the Vim window position before setting 'columns', so that we can |
| 1487 | " move the window back to where it was. |
Bram Moolenaar | ba6ec18 | 2017-04-04 22:41:10 +0200 | [diff] [blame] | 1488 | let winposx = getwinposx() |
| 1489 | let winposy = getwinposy() |
Bram Moolenaar | f8191c5 | 2019-05-18 17:22:54 +0200 | [diff] [blame] | 1490 | |
| 1491 | if winposx >= 0 && winposy >= 0 && !has('gui_running') |
| 1492 | " We did get the window position, but xterm may report the wrong numbers. |
| 1493 | " Move the window to the reported position and compute any offset. |
| 1494 | exe 'winpos ' . winposx . ' ' . winposy |
| 1495 | sleep 100m |
| 1496 | let x = getwinposx() |
| 1497 | if x >= 0 |
| 1498 | let winposx += winposx - x |
| 1499 | endif |
| 1500 | let y = getwinposy() |
| 1501 | if y >= 0 |
| 1502 | let winposy += winposy - y |
| 1503 | endif |
| 1504 | endif |
| 1505 | |
Bram Moolenaar | 658a3a2 | 2017-03-31 22:27:12 +0200 | [diff] [blame] | 1506 | let save_columns = &columns |
Bram Moolenaar | 15ecbd6 | 2017-04-07 14:10:48 +0200 | [diff] [blame] | 1507 | " Need at least about 1100 columns to reproduce the problem. |
Bram Moolenaar | ba6ec18 | 2017-04-04 22:41:10 +0200 | [diff] [blame] | 1508 | set columns=2000 |
Bram Moolenaar | 658a3a2 | 2017-03-31 22:27:12 +0200 | [diff] [blame] | 1509 | set noswapfile |
Bram Moolenaar | ba6ec18 | 2017-04-04 22:41:10 +0200 | [diff] [blame] | 1510 | |
Bram Moolenaar | 658a3a2 | 2017-03-31 22:27:12 +0200 | [diff] [blame] | 1511 | let longfilename = longdirname . '/' . repeat('a', 255) |
Bram Moolenaar | 658a3a2 | 2017-03-31 22:27:12 +0200 | [diff] [blame] | 1512 | call writefile(['Totum', 'Table'], longfilename) |
| 1513 | new |
| 1514 | exe "next Xfile " . longfilename |
| 1515 | exe "normal iT\<C-N>" |
| 1516 | |
| 1517 | bwipe! |
| 1518 | exe 'bwipe! ' . longfilename |
| 1519 | call delete(dirname, 'rf') |
| 1520 | let &columns = save_columns |
Bram Moolenaar | ba6ec18 | 2017-04-04 22:41:10 +0200 | [diff] [blame] | 1521 | if winposx >= 0 && winposy >= 0 |
| 1522 | exe 'winpos ' . winposx . ' ' . winposy |
| 1523 | endif |
Bram Moolenaar | 658a3a2 | 2017-03-31 22:27:12 +0200 | [diff] [blame] | 1524 | set swapfile& |
| 1525 | endfunc |
Bram Moolenaar | ff930ca | 2017-10-19 17:12:10 +0200 | [diff] [blame] | 1526 | |
Bram Moolenaar | 2c8c681 | 2018-07-28 17:07:52 +0200 | [diff] [blame] | 1527 | func Test_edit_backtick() |
| 1528 | next a\`b c |
| 1529 | call assert_equal('a`b', expand('%')) |
| 1530 | next |
| 1531 | call assert_equal('c', expand('%')) |
| 1532 | call assert_equal('a\`b c', expand('##')) |
| 1533 | endfunc |
| 1534 | |
Bram Moolenaar | ff930ca | 2017-10-19 17:12:10 +0200 | [diff] [blame] | 1535 | func Test_edit_quit() |
| 1536 | edit foo.txt |
| 1537 | split |
| 1538 | new |
| 1539 | call setline(1, 'hello') |
| 1540 | 3wincmd w |
| 1541 | redraw! |
| 1542 | call assert_fails('1q', 'E37:') |
| 1543 | bwipe! foo.txt |
| 1544 | only |
| 1545 | endfunc |
| 1546 | |
Bram Moolenaar | adb8fbe | 2018-06-04 20:34:23 +0200 | [diff] [blame] | 1547 | func Test_edit_alt() |
| 1548 | " Keeping the cursor line didn't happen when the first line has indent. |
| 1549 | new |
| 1550 | call setline(1, [' one', 'two', 'three']) |
| 1551 | w XAltFile |
| 1552 | $ |
| 1553 | call assert_equal(3, line('.')) |
| 1554 | e Xother |
| 1555 | e # |
| 1556 | call assert_equal(3, line('.')) |
| 1557 | |
| 1558 | bwipe XAltFile |
| 1559 | call delete('XAltFile') |
| 1560 | endfunc |
Bram Moolenaar | 4dbc262 | 2018-11-02 11:59:15 +0100 | [diff] [blame] | 1561 | |
Bram Moolenaar | db93495 | 2020-04-27 20:18:31 +0200 | [diff] [blame] | 1562 | func Test_edit_InsertLeave() |
Bram Moolenaar | 4dbc262 | 2018-11-02 11:59:15 +0100 | [diff] [blame] | 1563 | new |
Bram Moolenaar | b53e13a | 2020-10-21 12:19:53 +0200 | [diff] [blame] | 1564 | au InsertLeavePre * let g:did_au_pre = 1 |
Bram Moolenaar | 4dbc262 | 2018-11-02 11:59:15 +0100 | [diff] [blame] | 1565 | au InsertLeave * let g:did_au = 1 |
Bram Moolenaar | b53e13a | 2020-10-21 12:19:53 +0200 | [diff] [blame] | 1566 | let g:did_au_pre = 0 |
Bram Moolenaar | 4dbc262 | 2018-11-02 11:59:15 +0100 | [diff] [blame] | 1567 | let g:did_au = 0 |
| 1568 | call feedkeys("afoo\<Esc>", 'tx') |
Bram Moolenaar | b53e13a | 2020-10-21 12:19:53 +0200 | [diff] [blame] | 1569 | call assert_equal(1, g:did_au_pre) |
Bram Moolenaar | 4dbc262 | 2018-11-02 11:59:15 +0100 | [diff] [blame] | 1570 | call assert_equal(1, g:did_au) |
| 1571 | call assert_equal('foo', getline(1)) |
| 1572 | |
Bram Moolenaar | b53e13a | 2020-10-21 12:19:53 +0200 | [diff] [blame] | 1573 | let g:did_au_pre = 0 |
Bram Moolenaar | 4dbc262 | 2018-11-02 11:59:15 +0100 | [diff] [blame] | 1574 | let g:did_au = 0 |
| 1575 | call feedkeys("Sbar\<C-C>", 'tx') |
Bram Moolenaar | b53e13a | 2020-10-21 12:19:53 +0200 | [diff] [blame] | 1576 | call assert_equal(1, g:did_au_pre) |
Bram Moolenaar | 4dbc262 | 2018-11-02 11:59:15 +0100 | [diff] [blame] | 1577 | call assert_equal(0, g:did_au) |
| 1578 | call assert_equal('bar', getline(1)) |
| 1579 | |
| 1580 | inoremap x xx<Esc> |
Bram Moolenaar | b53e13a | 2020-10-21 12:19:53 +0200 | [diff] [blame] | 1581 | let g:did_au_pre = 0 |
Bram Moolenaar | 4dbc262 | 2018-11-02 11:59:15 +0100 | [diff] [blame] | 1582 | let g:did_au = 0 |
| 1583 | call feedkeys("Saax", 'tx') |
Bram Moolenaar | b53e13a | 2020-10-21 12:19:53 +0200 | [diff] [blame] | 1584 | call assert_equal(1, g:did_au_pre) |
Bram Moolenaar | 4dbc262 | 2018-11-02 11:59:15 +0100 | [diff] [blame] | 1585 | call assert_equal(1, g:did_au) |
| 1586 | call assert_equal('aaxx', getline(1)) |
| 1587 | |
| 1588 | inoremap x xx<C-C> |
Bram Moolenaar | b53e13a | 2020-10-21 12:19:53 +0200 | [diff] [blame] | 1589 | let g:did_au_pre = 0 |
Bram Moolenaar | 4dbc262 | 2018-11-02 11:59:15 +0100 | [diff] [blame] | 1590 | let g:did_au = 0 |
| 1591 | call feedkeys("Sbbx", 'tx') |
Bram Moolenaar | b53e13a | 2020-10-21 12:19:53 +0200 | [diff] [blame] | 1592 | call assert_equal(1, g:did_au_pre) |
Bram Moolenaar | 4dbc262 | 2018-11-02 11:59:15 +0100 | [diff] [blame] | 1593 | call assert_equal(0, g:did_au) |
| 1594 | call assert_equal('bbxx', getline(1)) |
| 1595 | |
| 1596 | bwipe! |
Bram Moolenaar | b53e13a | 2020-10-21 12:19:53 +0200 | [diff] [blame] | 1597 | au! InsertLeave InsertLeavePre |
Bram Moolenaar | 4dbc262 | 2018-11-02 11:59:15 +0100 | [diff] [blame] | 1598 | iunmap x |
| 1599 | endfunc |
Bram Moolenaar | c6b37db | 2019-04-27 18:00:34 +0200 | [diff] [blame] | 1600 | |
Bram Moolenaar | db93495 | 2020-04-27 20:18:31 +0200 | [diff] [blame] | 1601 | func Test_edit_InsertLeave_undo() |
| 1602 | new XtestUndo |
| 1603 | set undofile |
| 1604 | au InsertLeave * wall |
| 1605 | exe "normal ofoo\<Esc>" |
| 1606 | call assert_equal(2, line('$')) |
| 1607 | normal u |
| 1608 | call assert_equal(1, line('$')) |
| 1609 | |
| 1610 | bwipe! |
| 1611 | au! InsertLeave |
| 1612 | call delete('XtestUndo') |
Bram Moolenaar | b340bae | 2020-06-15 19:51:56 +0200 | [diff] [blame] | 1613 | call delete(undofile('XtestUndo')) |
Bram Moolenaar | db93495 | 2020-04-27 20:18:31 +0200 | [diff] [blame] | 1614 | set undofile& |
| 1615 | endfunc |
| 1616 | |
Bram Moolenaar | c6b37db | 2019-04-27 18:00:34 +0200 | [diff] [blame] | 1617 | " Test for inserting characters using CTRL-V followed by a number. |
| 1618 | func Test_edit_special_chars() |
| 1619 | new |
| 1620 | |
| 1621 | if has("ebcdic") |
| 1622 | let t = "o\<C-V>193\<C-V>xc2\<C-V>o303 \<C-V>90a\<C-V>xfg\<C-V>o578\<Esc>" |
| 1623 | else |
| 1624 | let t = "o\<C-V>65\<C-V>x42\<C-V>o103 \<C-V>33a\<C-V>xfg\<C-V>o78\<Esc>" |
| 1625 | endif |
| 1626 | |
| 1627 | exe "normal " . t |
| 1628 | call assert_equal("ABC !a\<C-O>g\<C-G>8", getline(2)) |
| 1629 | |
| 1630 | close! |
| 1631 | endfunc |
Bram Moolenaar | 8d3b510 | 2019-09-05 21:29:01 +0200 | [diff] [blame] | 1632 | |
| 1633 | func Test_edit_startinsert() |
| 1634 | new |
| 1635 | set backspace+=start |
| 1636 | call setline(1, 'foobar') |
| 1637 | call feedkeys("A\<C-U>\<Esc>", 'xt') |
| 1638 | call assert_equal('', getline(1)) |
| 1639 | |
| 1640 | call setline(1, 'foobar') |
| 1641 | call feedkeys(":startinsert!\<CR>\<C-U>\<Esc>", 'xt') |
| 1642 | call assert_equal('', getline(1)) |
| 1643 | |
| 1644 | set backspace& |
| 1645 | bwipe! |
| 1646 | endfunc |
Bram Moolenaar | 177c9f2 | 2019-11-06 13:59:16 +0100 | [diff] [blame] | 1647 | |
Bram Moolenaar | bc2b71d | 2020-02-17 21:33:30 +0100 | [diff] [blame] | 1648 | " Test for :startreplace and :startgreplace |
| 1649 | func Test_edit_startreplace() |
| 1650 | new |
| 1651 | call setline(1, 'abc') |
| 1652 | call feedkeys("l:startreplace\<CR>xyz\e", 'xt') |
| 1653 | call assert_equal('axyz', getline(1)) |
| 1654 | call feedkeys("0:startreplace!\<CR>abc\e", 'xt') |
| 1655 | call assert_equal('axyzabc', getline(1)) |
| 1656 | call setline(1, "a\tb") |
| 1657 | call feedkeys("0l:startgreplace\<CR>xyz\e", 'xt') |
| 1658 | call assert_equal("axyz\tb", getline(1)) |
| 1659 | call feedkeys("0i\<C-R>=execute('startreplace')\<CR>12\e", 'xt') |
| 1660 | call assert_equal("12axyz\tb", getline(1)) |
| 1661 | close! |
| 1662 | endfunc |
| 1663 | |
Bram Moolenaar | 177c9f2 | 2019-11-06 13:59:16 +0100 | [diff] [blame] | 1664 | func Test_edit_noesckeys() |
Bram Moolenaar | 215ba3b | 2019-11-06 15:07:07 +0100 | [diff] [blame] | 1665 | CheckNotGui |
Bram Moolenaar | 177c9f2 | 2019-11-06 13:59:16 +0100 | [diff] [blame] | 1666 | new |
| 1667 | |
| 1668 | " <Left> moves cursor when 'esckeys' is set |
| 1669 | exe "set t_kl=\<Esc>OD" |
| 1670 | set esckeys |
| 1671 | call feedkeys("axyz\<Esc>ODX", "xt") |
| 1672 | call assert_equal("xyXz", getline(1)) |
| 1673 | |
| 1674 | " <Left> exits Insert mode when 'esckeys' is off |
| 1675 | set noesckeys |
| 1676 | call setline(1, '') |
| 1677 | call feedkeys("axyz\<Esc>ODX", "xt") |
| 1678 | call assert_equal(["DX", "xyz"], getline(1, 2)) |
| 1679 | |
| 1680 | bwipe! |
| 1681 | set esckeys |
| 1682 | endfunc |
Bram Moolenaar | bc2b71d | 2020-02-17 21:33:30 +0100 | [diff] [blame] | 1683 | |
Bram Moolenaar | 1671f44 | 2020-03-10 07:48:13 +0100 | [diff] [blame] | 1684 | " Test for running an invalid ex command in insert mode using CTRL-O |
Bram Moolenaar | 1671f44 | 2020-03-10 07:48:13 +0100 | [diff] [blame] | 1685 | func Test_edit_ctrl_o_invalid_cmd() |
| 1686 | new |
| 1687 | set showmode showcmd |
Bram Moolenaar | b340bae | 2020-06-15 19:51:56 +0200 | [diff] [blame] | 1688 | " Avoid a sleep of 3 seconds. Zero might have side effects. |
| 1689 | call test_override('ui_delay', 50) |
Bram Moolenaar | 1671f44 | 2020-03-10 07:48:13 +0100 | [diff] [blame] | 1690 | let caught_e492 = 0 |
| 1691 | try |
| 1692 | call feedkeys("i\<C-O>:invalid\<CR>abc\<Esc>", "xt") |
| 1693 | catch /E492:/ |
| 1694 | let caught_e492 = 1 |
| 1695 | endtry |
| 1696 | call assert_equal(1, caught_e492) |
| 1697 | call assert_equal('abc', getline(1)) |
| 1698 | set showmode& showcmd& |
Bram Moolenaar | b340bae | 2020-06-15 19:51:56 +0200 | [diff] [blame] | 1699 | call test_override('ui_delay', 0) |
Bram Moolenaar | 1671f44 | 2020-03-10 07:48:13 +0100 | [diff] [blame] | 1700 | close! |
| 1701 | endfunc |
| 1702 | |
Bram Moolenaar | b340bae | 2020-06-15 19:51:56 +0200 | [diff] [blame] | 1703 | " Test for editing a file with a very long name |
| 1704 | func Test_edit_illegal_filename() |
| 1705 | CheckEnglish |
| 1706 | new |
| 1707 | redir => msg |
| 1708 | exe 'edit ' . repeat('f', 5000) |
| 1709 | redir END |
| 1710 | call assert_match("Illegal file name$", split(msg, "\n")[0]) |
| 1711 | close! |
| 1712 | endfunc |
| 1713 | |
Bram Moolenaar | c8fe645 | 2020-10-03 17:04:37 +0200 | [diff] [blame] | 1714 | " Test for editing a directory |
| 1715 | func Test_edit_is_a_directory() |
| 1716 | CheckEnglish |
| 1717 | let dirname = getcwd() . "/Xdir" |
| 1718 | call mkdir(dirname, 'p') |
| 1719 | |
| 1720 | new |
| 1721 | redir => msg |
| 1722 | exe 'edit' dirname |
| 1723 | redir END |
| 1724 | call assert_match("is a directory$", split(msg, "\n")[0]) |
| 1725 | bwipe! |
| 1726 | |
| 1727 | let dirname .= '/' |
| 1728 | |
| 1729 | new |
| 1730 | redir => msg |
| 1731 | exe 'edit' dirname |
| 1732 | redir END |
| 1733 | call assert_match("is a directory$", split(msg, "\n")[0]) |
| 1734 | bwipe! |
| 1735 | |
| 1736 | call delete(dirname, 'rf') |
| 1737 | endfunc |
| 1738 | |
Bram Moolenaar | b340bae | 2020-06-15 19:51:56 +0200 | [diff] [blame] | 1739 | " Test for editing a file using invalid file encoding |
| 1740 | func Test_edit_invalid_encoding() |
| 1741 | CheckEnglish |
| 1742 | call writefile([], 'Xfile') |
| 1743 | redir => msg |
| 1744 | new ++enc=axbyc Xfile |
| 1745 | redir END |
| 1746 | call assert_match('\[NOT converted\]', msg) |
| 1747 | call delete('Xfile') |
| 1748 | close! |
| 1749 | endfunc |
| 1750 | |
| 1751 | " Test for the "charconvert" option |
| 1752 | func Test_edit_charconvert() |
| 1753 | CheckEnglish |
| 1754 | call writefile(['one', 'two'], 'Xfile') |
| 1755 | |
| 1756 | " set 'charconvert' to a non-existing function |
| 1757 | set charconvert=NonExitingFunc() |
| 1758 | new |
| 1759 | let caught_e117 = v:false |
| 1760 | try |
| 1761 | redir => msg |
| 1762 | edit ++enc=axbyc Xfile |
| 1763 | catch /E117:/ |
| 1764 | let caught_e117 = v:true |
| 1765 | finally |
| 1766 | redir END |
| 1767 | endtry |
| 1768 | call assert_true(caught_e117) |
| 1769 | call assert_equal(['one', 'two'], getline(1, '$')) |
| 1770 | call assert_match("Conversion with 'charconvert' failed", msg) |
| 1771 | close! |
| 1772 | set charconvert& |
| 1773 | |
| 1774 | " 'charconvert' function doesn't create a output file |
| 1775 | func Cconv1() |
| 1776 | endfunc |
| 1777 | set charconvert=Cconv1() |
| 1778 | new |
| 1779 | redir => msg |
| 1780 | edit ++enc=axbyc Xfile |
| 1781 | redir END |
| 1782 | call assert_equal(['one', 'two'], getline(1, '$')) |
| 1783 | call assert_match("can't read output of 'charconvert'", msg) |
| 1784 | close! |
| 1785 | delfunc Cconv1 |
| 1786 | set charconvert& |
| 1787 | |
| 1788 | " 'charconvert' function to convert to upper case |
| 1789 | func Cconv2() |
| 1790 | let data = readfile(v:fname_in) |
| 1791 | call map(data, 'toupper(v:val)') |
| 1792 | call writefile(data, v:fname_out) |
| 1793 | endfunc |
| 1794 | set charconvert=Cconv2() |
| 1795 | new Xfile |
| 1796 | write ++enc=ucase Xfile1 |
| 1797 | call assert_equal(['ONE', 'TWO'], readfile('Xfile1')) |
| 1798 | call delete('Xfile1') |
| 1799 | close! |
| 1800 | delfunc Cconv2 |
| 1801 | set charconvert& |
| 1802 | |
| 1803 | " 'charconvert' function removes the input file |
| 1804 | func Cconv3() |
| 1805 | call delete(v:fname_in) |
| 1806 | endfunc |
| 1807 | set charconvert=Cconv3() |
| 1808 | new |
| 1809 | call assert_fails('edit ++enc=lcase Xfile', 'E202:') |
| 1810 | call assert_equal([''], getline(1, '$')) |
| 1811 | close! |
| 1812 | delfunc Cconv3 |
| 1813 | set charconvert& |
| 1814 | |
| 1815 | call delete('Xfile') |
| 1816 | endfunc |
| 1817 | |
| 1818 | " Test for editing a file without read permission |
| 1819 | func Test_edit_file_no_read_perm() |
| 1820 | CheckUnix |
Bram Moolenaar | 17709e2 | 2021-03-19 14:38:12 +0100 | [diff] [blame] | 1821 | CheckNotRoot |
| 1822 | |
Bram Moolenaar | b340bae | 2020-06-15 19:51:56 +0200 | [diff] [blame] | 1823 | call writefile(['one', 'two'], 'Xfile') |
| 1824 | call setfperm('Xfile', '-w-------') |
| 1825 | new |
| 1826 | redir => msg |
| 1827 | edit Xfile |
| 1828 | redir END |
| 1829 | call assert_equal(1, &readonly) |
| 1830 | call assert_equal([''], getline(1, '$')) |
| 1831 | call assert_match('\[Permission Denied\]', msg) |
| 1832 | close! |
| 1833 | call delete('Xfile') |
| 1834 | endfunc |
| 1835 | |
Bram Moolenaar | 845e0ee | 2020-06-20 16:05:32 +0200 | [diff] [blame] | 1836 | " Pressing escape in 'insertmode' should beep |
| 1837 | func Test_edit_insertmode_esc_beeps() |
| 1838 | new |
| 1839 | set insertmode |
| 1840 | call assert_beeps("call feedkeys(\"one\<Esc>\", 'xt')") |
| 1841 | set insertmode& |
| 1842 | " unsupported CTRL-G command should beep in insert mode. |
| 1843 | call assert_beeps("normal i\<C-G>l") |
| 1844 | close! |
| 1845 | endfunc |
| 1846 | |
| 1847 | " Test for 'hkmap' and 'hkmapp' |
| 1848 | func Test_edit_hkmap() |
| 1849 | CheckFeature rightleft |
| 1850 | if has('win32') && !has('gui') |
Bram Moolenaar | 6d91bcb | 2020-08-12 18:50:36 +0200 | [diff] [blame] | 1851 | throw 'Skipped: fails on the MS-Windows terminal version' |
Bram Moolenaar | 845e0ee | 2020-06-20 16:05:32 +0200 | [diff] [blame] | 1852 | endif |
| 1853 | new |
| 1854 | |
| 1855 | set revins hkmap |
| 1856 | let str = 'abcdefghijklmnopqrstuvwxyz' |
| 1857 | let str ..= 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' |
| 1858 | let str ..= '`/'',.;' |
| 1859 | call feedkeys('i' .. str, 'xt') |
| 1860 | let expected = "óõú,.;" |
| 1861 | let expected ..= "ZYXWVUTSRQPONMLKJIHGFEDCBA" |
| 1862 | let expected ..= "æèñ'äåà ãø/ôÃîöêìçïéòë÷âáðù" |
| 1863 | call assert_equal(expected, getline(1)) |
| 1864 | |
| 1865 | %d |
| 1866 | set revins hkmap hkmapp |
| 1867 | let str = 'abcdefghijklmnopqrstuvwxyz' |
| 1868 | let str ..= 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' |
| 1869 | call feedkeys('i' .. str, 'xt') |
| 1870 | let expected = "õYXWVUTSRQóOïÃLKJIHGFEDêBA" |
| 1871 | let expected ..= "öòXùåèúæø'ôñðîì÷çéäâóǟãëáà " |
| 1872 | call assert_equal(expected, getline(1)) |
| 1873 | |
| 1874 | set revins& hkmap& hkmapp& |
| 1875 | close! |
| 1876 | endfunc |
| 1877 | |
| 1878 | " Test for 'allowrevins' and using CTRL-_ in insert mode |
| 1879 | func Test_edit_allowrevins() |
| 1880 | CheckFeature rightleft |
| 1881 | new |
| 1882 | set allowrevins |
| 1883 | call feedkeys("iABC\<C-_>DEF\<C-_>GHI", 'xt') |
| 1884 | call assert_equal('ABCFEDGHI', getline(1)) |
| 1885 | set allowrevins& |
| 1886 | close! |
| 1887 | endfunc |
| 1888 | |
| 1889 | " Test for inserting a register in insert mode using CTRL-R |
| 1890 | func Test_edit_insert_reg() |
| 1891 | new |
| 1892 | let g:Line = '' |
| 1893 | func SaveFirstLine() |
| 1894 | let g:Line = Screenline(1) |
| 1895 | return 'r' |
| 1896 | endfunc |
| 1897 | inoremap <expr> <buffer> <F2> SaveFirstLine() |
| 1898 | call test_override('redraw_flag', 1) |
| 1899 | call test_override('char_avail', 1) |
| 1900 | let @r = 'sample' |
| 1901 | call feedkeys("a\<C-R>=SaveFirstLine()\<CR>", "xt") |
| 1902 | call assert_equal('"', g:Line) |
| 1903 | call test_override('ALL', 0) |
| 1904 | close! |
| 1905 | endfunc |
| 1906 | |
| 1907 | " When a character is inserted at the last position of the last line in a |
| 1908 | " window, the window contents should be scrolled one line up. If the top line |
| 1909 | " is part of a fold, then the entire fold should be scrolled up. |
| 1910 | func Test_edit_lastline_scroll() |
| 1911 | new |
| 1912 | let h = winheight(0) |
| 1913 | let lines = ['one', 'two', 'three'] |
| 1914 | let lines += repeat(['vim'], h - 4) |
| 1915 | call setline(1, lines) |
| 1916 | call setline(h, repeat('x', winwidth(0) - 1)) |
| 1917 | call feedkeys("GAx", 'xt') |
| 1918 | redraw! |
| 1919 | call assert_equal(h - 1, winline()) |
| 1920 | call assert_equal(2, line('w0')) |
| 1921 | |
| 1922 | " scroll with a fold |
| 1923 | 1,2fold |
| 1924 | normal gg |
| 1925 | call setline(h + 1, repeat('x', winwidth(0) - 1)) |
| 1926 | call feedkeys("GAx", 'xt') |
| 1927 | redraw! |
| 1928 | call assert_equal(h - 1, winline()) |
| 1929 | call assert_equal(3, line('w0')) |
| 1930 | |
| 1931 | close! |
| 1932 | endfunc |
| 1933 | |
Bram Moolenaar | 21cbe17 | 2020-10-13 19:08:24 +0200 | [diff] [blame] | 1934 | func Test_edit_browse() |
| 1935 | " in the GUI this opens a file picker, we only test the terminal behavior |
| 1936 | CheckNotGui |
| 1937 | |
| 1938 | " ":browse xxx" checks for the FileExplorer augroup and assumes editing "." |
| 1939 | " works then. |
| 1940 | augroup FileExplorer |
| 1941 | au! |
| 1942 | augroup END |
| 1943 | |
| 1944 | " When the USE_FNAME_CASE is defined this used to cause a crash. |
| 1945 | browse enew |
| 1946 | bwipe! |
| 1947 | |
| 1948 | browse split |
| 1949 | bwipe! |
| 1950 | endfunc |
| 1951 | |
Bram Moolenaar | caf73dc | 2020-10-26 21:39:13 +0100 | [diff] [blame] | 1952 | func Test_read_invalid() |
| 1953 | set encoding=latin1 |
| 1954 | " This was not properly checking for going past the end. |
| 1955 | call assert_fails('r`=', 'E484') |
| 1956 | set encoding=utf-8 |
| 1957 | endfunc |
| 1958 | |
Yegappan Lakshmanan | 5958549 | 2021-06-12 13:46:41 +0200 | [diff] [blame] | 1959 | " Test for the 'revins' option |
| 1960 | func Test_edit_revins() |
| 1961 | CheckFeature rightleft |
| 1962 | new |
| 1963 | set revins |
| 1964 | exe "normal! ione\ttwo three" |
| 1965 | call assert_equal("eerht owt\teno", getline(1)) |
| 1966 | call setline(1, "one\ttwo three") |
| 1967 | normal! gg$bi a |
| 1968 | call assert_equal("one\ttwo a three", getline(1)) |
| 1969 | exe "normal! $bi\<BS>\<BS>" |
| 1970 | call assert_equal("one\ttwo a ree", getline(1)) |
| 1971 | exe "normal! 0wi\<C-W>" |
| 1972 | call assert_equal("one\t a ree", getline(1)) |
| 1973 | exe "normal! 0wi\<C-U>" |
| 1974 | call assert_equal("one\t ", getline(1)) |
| 1975 | " newline in insert mode starts at the end of the line |
| 1976 | call setline(1, 'one two three') |
| 1977 | exe "normal! wi\nfour" |
| 1978 | call assert_equal(['one two three', 'ruof'], getline(1, '$')) |
| 1979 | set revins& |
| 1980 | bw! |
| 1981 | endfunc |
| 1982 | |
Bram Moolenaar | 35a9a00 | 2021-09-11 21:14:20 +0200 | [diff] [blame] | 1983 | " Test for getting the character of the line below after "p" |
| 1984 | func Test_edit_put_CTRL_E() |
| 1985 | set encoding=latin1 |
| 1986 | new |
| 1987 | let @" = '' |
| 1988 | sil! norm orggRx |
| 1989 | sil! norm pr |
| 1990 | call assert_equal(['r', 'r'], getline(1, 2)) |
| 1991 | bwipe! |
| 1992 | set encoding=utf-8 |
| 1993 | endfunc |
| 1994 | |
=?UTF-8?q?Magnus=20Gro=C3=9F?= | f1e8876 | 2021-09-12 13:39:55 +0200 | [diff] [blame] | 1995 | " Test for ModeChanged pattern |
| 1996 | func Test_mode_changes() |
=?UTF-8?q?Magnus=20Gro=C3=9F?= | f1e8876 | 2021-09-12 13:39:55 +0200 | [diff] [blame] | 1997 | let g:index = 0 |
=?UTF-8?q?Magnus=20Gro=C3=9F?= | 25def2c | 2021-10-22 18:56:39 +0100 | [diff] [blame] | 1998 | let g:mode_seq = ['n', 'i', 'n', 'v', 'V', 'i', 'ix', 'i', 'ic', 'i', 'n', 'no', 'n', 'V', 'v', 's', 'n'] |
=?UTF-8?q?Magnus=20Gro=C3=9F?= | f1e8876 | 2021-09-12 13:39:55 +0200 | [diff] [blame] | 1999 | func! TestMode() |
| 2000 | call assert_equal(g:mode_seq[g:index], get(v:event, "old_mode")) |
| 2001 | call assert_equal(g:mode_seq[g:index + 1], get(v:event, "new_mode")) |
Bram Moolenaar | d85931e | 2021-10-02 16:55:39 +0100 | [diff] [blame] | 2002 | call assert_equal(mode(1), get(v:event, "new_mode")) |
=?UTF-8?q?Magnus=20Gro=C3=9F?= | f1e8876 | 2021-09-12 13:39:55 +0200 | [diff] [blame] | 2003 | let g:index += 1 |
| 2004 | endfunc |
| 2005 | |
| 2006 | au ModeChanged * :call TestMode() |
=?UTF-8?q?Magnus=20Gro=C3=9F?= | 25def2c | 2021-10-22 18:56:39 +0100 | [diff] [blame] | 2007 | let g:n_to_any = 0 |
| 2008 | au ModeChanged n:* let g:n_to_any += 1 |
| 2009 | call feedkeys("i\<esc>vVca\<CR>\<C-X>\<C-L>\<esc>ggdG", 'tnix') |
=?UTF-8?q?Magnus=20Gro=C3=9F?= | f1e8876 | 2021-09-12 13:39:55 +0200 | [diff] [blame] | 2010 | |
=?UTF-8?q?Magnus=20Gro=C3=9F?= | 25def2c | 2021-10-22 18:56:39 +0100 | [diff] [blame] | 2011 | let g:V_to_v = 0 |
| 2012 | au ModeChanged V:v let g:V_to_v += 1 |
| 2013 | call feedkeys("Vv\<C-G>\<esc>", 'tnix') |
| 2014 | call assert_equal(len(filter(g:mode_seq[1:], {idx, val -> val == 'n'})), g:n_to_any) |
| 2015 | call assert_equal(1, g:V_to_v) |
Bram Moolenaar | d85931e | 2021-10-02 16:55:39 +0100 | [diff] [blame] | 2016 | call assert_equal(len(g:mode_seq) - 1, g:index) |
=?UTF-8?q?Magnus=20Gro=C3=9F?= | f1e8876 | 2021-09-12 13:39:55 +0200 | [diff] [blame] | 2017 | |
Bram Moolenaar | 72d2fa6 | 2021-10-02 21:48:15 +0100 | [diff] [blame] | 2018 | let g:n_to_i = 0 |
| 2019 | au ModeChanged n:i let g:n_to_i += 1 |
| 2020 | let g:n_to_niI = 0 |
| 2021 | au ModeChanged i:niI let g:n_to_niI += 1 |
| 2022 | let g:niI_to_i = 0 |
| 2023 | au ModeChanged niI:i let g:niI_to_i += 1 |
| 2024 | let g:nany_to_i = 0 |
| 2025 | au ModeChanged n*:i let g:nany_to_i += 1 |
| 2026 | let g:i_to_n = 0 |
| 2027 | au ModeChanged i:n let g:i_to_n += 1 |
| 2028 | let g:nori_to_any = 0 |
| 2029 | au ModeChanged [ni]:* let g:nori_to_any += 1 |
| 2030 | let g:i_to_any = 0 |
| 2031 | au ModeChanged i:* let g:i_to_any += 1 |
Bram Moolenaar | d85931e | 2021-10-02 16:55:39 +0100 | [diff] [blame] | 2032 | let g:index = 0 |
| 2033 | let g:mode_seq = ['n', 'i', 'niI', 'i', 'n'] |
| 2034 | call feedkeys("a\<C-O>l\<esc>", 'tnix') |
=?UTF-8?q?Magnus=20Gro=C3=9F?= | f1e8876 | 2021-09-12 13:39:55 +0200 | [diff] [blame] | 2035 | call assert_equal(len(g:mode_seq) - 1, g:index) |
Bram Moolenaar | 72d2fa6 | 2021-10-02 21:48:15 +0100 | [diff] [blame] | 2036 | call assert_equal(1, g:n_to_i) |
| 2037 | call assert_equal(1, g:n_to_niI) |
| 2038 | call assert_equal(1, g:niI_to_i) |
| 2039 | call assert_equal(2, g:nany_to_i) |
| 2040 | call assert_equal(1, g:i_to_n) |
| 2041 | call assert_equal(2, g:i_to_any) |
| 2042 | call assert_equal(3, g:nori_to_any) |
=?UTF-8?q?Magnus=20Gro=C3=9F?= | f1e8876 | 2021-09-12 13:39:55 +0200 | [diff] [blame] | 2043 | |
=?UTF-8?q?Magnus=20Gro=C3=9F?= | 25def2c | 2021-10-22 18:56:39 +0100 | [diff] [blame] | 2044 | if has('terminal') |
| 2045 | let g:mode_seq += ['c', 'n', 't', 'nt', 'c', 'nt', 'n'] |
| 2046 | call feedkeys(":term\<CR>\<C-W>N:bd!\<CR>", 'tnix') |
| 2047 | call assert_equal(len(g:mode_seq) - 1, g:index) |
| 2048 | call assert_equal(1, g:n_to_i) |
| 2049 | call assert_equal(1, g:n_to_niI) |
| 2050 | call assert_equal(1, g:niI_to_i) |
| 2051 | call assert_equal(2, g:nany_to_i) |
| 2052 | call assert_equal(1, g:i_to_n) |
| 2053 | call assert_equal(2, g:i_to_any) |
| 2054 | call assert_equal(5, g:nori_to_any) |
| 2055 | endif |
| 2056 | |
=?UTF-8?q?Magnus=20Gro=C3=9F?= | f1e8876 | 2021-09-12 13:39:55 +0200 | [diff] [blame] | 2057 | au! ModeChanged |
| 2058 | delfunc TestMode |
| 2059 | unlet! g:mode_seq |
| 2060 | unlet! g:index |
=?UTF-8?q?Magnus=20Gro=C3=9F?= | 25def2c | 2021-10-22 18:56:39 +0100 | [diff] [blame] | 2061 | unlet! g:n_to_any |
| 2062 | unlet! g:V_to_v |
| 2063 | unlet! g:n_to_i |
| 2064 | unlet! g:n_to_niI |
| 2065 | unlet! g:niI_to_i |
| 2066 | unlet! g:nany_to_i |
| 2067 | unlet! g:i_to_n |
| 2068 | unlet! g:nori_to_any |
| 2069 | unlet! g:i_to_any |
=?UTF-8?q?Magnus=20Gro=C3=9F?= | f1e8876 | 2021-09-12 13:39:55 +0200 | [diff] [blame] | 2070 | endfunc |
| 2071 | |
Bram Moolenaar | 3075a45 | 2021-11-17 15:51:52 +0000 | [diff] [blame] | 2072 | func Test_recursive_ModeChanged() |
| 2073 | au! ModeChanged * norm 0u |
| 2074 | sil! norm |
Bram Moolenaar | a062006 | 2021-11-17 16:52:40 +0000 | [diff] [blame] | 2075 | au! ModeChanged |
| 2076 | endfunc |
| 2077 | |
| 2078 | func Test_ModeChanged_starts_visual() |
| 2079 | " This was triggering ModeChanged before setting VIsual, causing a crash. |
| 2080 | au! ModeChanged * norm 0u |
| 2081 | sil! norm |
| 2082 | |
| 2083 | au! ModeChanged |
Bram Moolenaar | 3075a45 | 2021-11-17 15:51:52 +0000 | [diff] [blame] | 2084 | endfunc |
| 2085 | |
Dominique Pelle | 9cd063e | 2021-10-28 21:06:05 +0100 | [diff] [blame] | 2086 | " Test toggling of input method. See :help i_CTRL-^ |
| 2087 | func Test_edit_CTRL_hat() |
| 2088 | CheckFeature xim |
Dominique Pelle | 8753c1d | 2021-10-31 20:19:17 +0000 | [diff] [blame] | 2089 | |
| 2090 | " FIXME: test fails with Athena and Motif GUI. |
| 2091 | " test also fails when running in the GUI. |
| 2092 | CheckFeature gui_gtk |
| 2093 | CheckNotGui |
Dominique Pelle | 9cd063e | 2021-10-28 21:06:05 +0100 | [diff] [blame] | 2094 | |
| 2095 | new |
| 2096 | |
| 2097 | call assert_equal(0, &iminsert) |
| 2098 | call feedkeys("i\<C-^>", 'xt') |
| 2099 | call assert_equal(2, &iminsert) |
| 2100 | call feedkeys("i\<C-^>", 'xt') |
| 2101 | call assert_equal(0, &iminsert) |
| 2102 | |
| 2103 | bwipe! |
| 2104 | endfunc |
| 2105 | |
| 2106 | |
Bram Moolenaar | bc2b71d | 2020-02-17 21:33:30 +0100 | [diff] [blame] | 2107 | " vim: shiftwidth=2 sts=2 expandtab |