Raimondi / delimitMate

Vim plugin, provides insert mode auto-completion for quotes, parens, brackets, etc.
http://www.vim.org/scripts/script.php?script_id=2754
1.98k stars 117 forks source link

Enabling delimitMate breaks Tcl indentation #241

Closed anemator closed 8 years ago

anemator commented 8 years ago

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

EDIT: Might be related to #214.

anemator commented 8 years ago

Oops, unrelated. Sorry.