The result of pressing == in visual mode to reindent the following lines with:
# delimitMate enabled:
if true {
if true {
}
}
# delimitMate disabled:
if true {
if true {
}
}
I tested with macvim on the command line and the following vimrc
filetype on | filetype off
set rtp+=~/.vim/bundle/vundle/
call vundle#begin()
Plugin 'Raimondi/delimitMate'
call vundle#end()
filetype plugin indent on
The result of pressing
==
in visual mode to reindent the following lines with:I tested with macvim on the command line and the following vimrc
EDIT: Might be related to #214.