mirror of
https://github.com/balkian/dotfiles.git
synced 2024-11-13 00:02:28 +00:00
12 lines
265 B
VimL
12 lines
265 B
VimL
setlocal formatoptions+=wa
|
|
|
|
function! SyncTexForward()
|
|
let execstr = "silent !okular --unique ".LatexBox_GetOutputFile()."\\#src:".line(".")."%:p &"
|
|
exec execstr
|
|
endfunction
|
|
nmap <Leader>f :call SyncTexForward()<CR>
|
|
map <leader>ct yyp:s/begin/end/<CR>
|
|
|
|
|
|
|