
Here are some relevant files: which pdflatex However, I have not been able to get vim to build *.pdf, \ll does nothing nor is vim even aware that Latex_Suite is installed, i.e., none of the LaTeX commands appear in the MacVim menu system. I also compiled successfully *.tex with pdflatex from the command line. I then installed and tested TexShop.app and texmaker.app.
MACVIM CHANGE BUFFERS INSTALL
Before attempting the vim/LaTeX install I downloaded and installed MacTex-2018, the version required for macOS 10.13.6.

To verify, press a number, and then press : to enter command line mode.I am trying to install Latex_Suite in MacVim. See also Neovim help file on this topic ( h ). If we use s: notation, we get the following error: > E81: Using not in a script context When we execute the mapping, we are usually in otherįiles. The s: notation only works if we are in the same script thatĭefines this function.


if index ( s: GetBufNums (), a: count ) = -1 echohl WarningMsg | echomsg 'Invalid bufnr: ' a: count | echohl None return endif if a: direction =# 'forward' silent execute ( 'buffer'. Nnoremap gb : call GoToBuffer ( v: count, 'forward' ) nnoremap gB : call GoToBuffer ( v: count, 'backward' ) function ! s: GoToBuffer ( count, direction ) abort if a: count = 0 if a: direction =# 'forward' bnext elseif a: direction =# 'backward' bprevious else echoerr 'Bad argument ' a: direction endif return endif " Check the validity of buffer number.
