Mercurial > vim
annotate src/testdir/test43.in @ 12465:805f7fd40e0d v8.0.1112
patch 8.0.1112: can't get size or current index from quickfix list
commit https://github.com/vim/vim/commit/fc2b270cfd36230166df486aae4d96d9d1f32755
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Sep 15 22:43:07 2017 +0200
patch 8.0.1112: can't get size or current index from quickfix list
Problem: Can't get size or current index from quickfix list.
Solution: Add "idx" and "size" options. (Yegappan Lakshmanan)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Fri, 15 Sep 2017 22:45:04 +0200 |
parents | 5c5ca538693f |
children |
rev | line source |
---|---|
7 | 1 Tests for regexp with various magic settings. |
2 | |
3 STARTTEST | |
3296 | 4 :so small.vim |
7 | 5 :set nocompatible viminfo+=nviminfo |
6 /^1 | |
7 /a*b\{2}c\+/e | |
8 x/\Md\*e\{2}f\+/e | |
9 x:set nomagic | |
10 /g\*h\{2}i\+/e | |
11 x/\mj*k\{2}l\+/e | |
12 x/\vm*n{2}o+/e | |
13 x/\V^aa$ | |
14 x:set magic | |
15 /\v(a)(b)\2\1\1/e | |
16 x/\V[ab]\(\[xy]\)\1 | |
3252 | 17 x:$ |
18 :set undolevels=100 | |
19 dv?bar? | |
20 Yup:" | |
21 :?^1?,$w! test.out | |
7 | 22 :qa! |
23 ENDTEST | |
24 | |
25 1 a aa abb abbccc | |
26 2 d dd dee deefff | |
27 3 g gg ghh ghhiii | |
28 4 j jj jkk jkklll | |
29 5 m mm mnn mnnooo | |
30 6 x ^aa$ x | |
31 7 (a)(b) abbaa | |
32 8 axx [ab]xx | |
3252 | 33 9 foobar |
34 |