The matchit plugin (which is bundled with most versions of Vim) can do
this. You will need to have the variable b:match_words defined in
Standard ML buffers (this can be done with an autocommand or filetype
plugin).

For instance, something like:

    let b:match_words = '\<let\>:\<in\>:\<end\>'

would do what you're asking for in a simple case, though you may want to
make it more sophisticated than that depending on the specifics of the
language syntax.

See `:help matchit` and `:help matchit-newlang` for more details.

-- 
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

Reply via email to