summaryrefslogtreecommitdiffstats
path: root/vim/ftplugin/tex.vim
blob: 03c08210f3a381c3dd165f707ccfe195d2e7bb61 (plain) (blame)
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
let b:tex_flavor="latex"

" :make converts to pdf
setlocal makeprg=(cd\ /tmp\ &&\ pdflatex\ --synctex=1\ --halt-on-error\ %:p)

function! s:zathura()
    if s:is_running('^zathura')
        " zathura automatically reloads
        return
    endif
    call remote_startserver("vim-zathura")
    call system('zathura --fork -x "vim --servername vim-zathura --remote +%{line} %{input}" ' . s:current_pdf())
endfunction

function! s:current_pdf()
    let base = expand('<afile>:t:r')
    if base == ''
        let base = expand('%:t:r')
    endif
    return '/tmp/' . base . '.pdf'
endfunction

function! s:is_running(re)
    let processes = split(system('ps xo args'), '\n')
    for process in processes
        if process =~ a:re
            return 1
        endif
    endfor
    return 0
endfunction

function! s:synctex()
    if s:is_running('^zathura')
        exe "silent !zathura --synctex-forward " . line('.') . ":" . col('.') . ":" . expand('%:p') . " " . s:current_pdf()
        redraw
    endif
endfunction

let g:_tex_last_line_seen = -1
function! s:cursor_moved()
    let line = line('.')
    if line != g:_tex_last_line_seen
        call s:synctex()
    endif
    let g:_tex_last_line_seen = line
endfunction

" don't load the pdf if the make failed
function! s:make_errors()
    let qf = getqflist()
    for line in qf
        if line['type'] == 'E'
            return 1
        endif
    endfor
    return 0
endfunction

augroup _tex
    autocmd!
    if executable('zathura') && strlen(expand('$DISPLAY'))
        autocmd QuickFixCmdPost make if !s:make_errors() | call s:zathura() | endif
    endif
    " currently this is not usable until
    " https://git.pwmt.org/pwmt/zathura/-/issues/157 is fixed
    " autocmd CursorMoved <buffer> call s:cursor_moved()
augroup END

" see :help errorformat-LaTeX
setlocal errorformat=
    \%E!\ LaTeX\ %trror:\ %m,
    \%E!\ %m,
    \%+WLaTeX\ %.%#Warning:\ %.%#line\ %l%.%#,
    \%+W%.%#\ at\ lines\ %l--%*\\d,
    \%WLaTeX\ %.%#Warning:\ %m,
    \%Cl.%l\ %m,
    \%+C\ \ %m.,
    \%+C%.%#-%.%#,
    \%+C%.%#[]%.%#,
    \%+C[]%.%#,
    \%+C%.%#%[{}\\]%.%#,
    \%+C<%.%#>%.%#,
    \%C\ \ %m,
    \%-GSee\ the\ LaTeX%m,
    \%-GType\ \ H\ <return>%m,
    \%-G\ ...%.%#,
    \%-G%.%#\ (C)\ %.%#,
    \%-G(see\ the\ transcript%.%#),
    \%-G\\s%#,
    \%+O(%f)%r,
    \%+P(%f%r,
    \%+P\ %\\=(%f%r,
    \%+P%*[^()](%f%r,
    \%+P[%\\d%[^()]%#(%f%r,
    \%+Q)%r,
    \%+Q%*[^()])%r,
    \%+Q[%\\d%*[^()])%r