diff --git a/vim/vimrc b/vim/vimrc index 0a4c394..5a307ee 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -268,7 +268,7 @@ function TexHook() " setlocal foldmethod=marker " Make a pdf noremap :!pdflatex -shell-escape '%' - noremap :!spawn zathura '%:p:r.pdf' + noremap :!rifle '%:p:r.pdf' endfunction " }}} @@ -281,7 +281,7 @@ autocmd Filetype markdown call MarkdownHook() function MarkdownHook() " Making and showing html noremap :!markdown '%:p' > '%:p:r.html' - noremap :!spawn firefox '%:p:r.html' + noremap :!rifle '%:p:r.html' endfunction " }}}