File: run-redraws.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 (20 lines) | stat: -rw-r--r-- 380 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
set nocompatible
set runtimepath^=../..
set runtimepath+=../../after
filetype plugin indent on
syntax enable

nnoremap q :qall!<cr>

let g:vimtex_syntax_conceal_disable = 1
let g:vimtex_syntax_match_unicode = 0
silent edit main.tex

syntime on
for s:x in range(400)
  redraw!
endfor
let s:lines = split(execute('syntime report'), "\n")
call writefile(s:lines, "out.log")

quitall