File: test-delims.vim

package info (click to toggle)
vim-vimtex 2.17-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,844 kB
  • sloc: makefile: 360; python: 103
file content (60 lines) | stat: -rw-r--r-- 1,211 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
set nocompatible
let &rtp = '../..,' . &rtp
filetype plugin on
syntax on

set nomore

setfiletype tex

call vimtex#test#keys('Edid',
      \ '\caption{Testing easy.}',
      \ '\caption{}'
      \)

call vimtex#test#keys('Edad',
      \ '\caption{Testing easy.}',
      \ '\caption'
      \)

call vimtex#test#keys('Edid',
      \ '\caption{Testing {nested}.}',
      \ '\caption{}'
      \)

call vimtex#test#keys('$bdid',
      \ '\caption{Testing {nested} after}',
      \ '\caption{}'
      \)

call vimtex#test#keys('Edid',
      \ '\caption{Testing $math$.}',
      \ '\caption{}'
      \)

call vimtex#test#keys('4jdid', [
      \ 'An interval like',
      \ '\begin{equation}',
      \ '  I = (0, 1]',
      \ '\end{equation}',
      \ 'is called half-open, just like the interval',
      \ '\[',
      \ '  J = [0, 1)',
      \ '\]',
      \], [
      \ 'An interval like',
      \ '\begin{equation}',
      \ '  I = (0, 1]',
      \ '\end{equation}',
      \ 'is called half-open, just like the interval',
      \ '\[',
      \ '  J = [0, 1)',
      \ '\]',
      \])

call vimtex#test#keys('$bdid',
      \ '\caption{Testing $math$ after}',
      \ '\caption{}'
      \)

call vimtex#test#finished()