plugin - vimrc
¿Por qué vundle requiere filetype desactivado? (2)
Puede activar el filetype on
después del último comando de Vundle:
filetype off " required!
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
...
Vundle ''blabla''
Vundle ''blabla2''
filetype plugin indent on " re-enable filetype
En la página de inicio de vundle, documentó que requiere que el tipo de archivo esté desactivado en .vimrc:
filetype off " required!
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
No entiendo porque Ya que estoy teniendo problemas con la edición de archivos .coffee y .less recientemente después de los complementos relacionados instalados por separado para ellos (vim-coffee-script y vim-less). Mi problema en vim-coffee-script
Quería abordar el por qué parte de este problema.
La mayor parte de esta respuesta es del siguiente hilo de github
https://github.com/VundleVim/Vundle.vim/issues/176
Es la característica de Vim.
Vim hace caché para complementos de tipo de archivo desde runtimepath. Así que si vundle cambia runtimepath, debe reiniciarse antes de llamar.
También se dice que este problema solo existía antes del 7.3.430.
Como @Maxim Kim ha respondido, es mejor encenderlo después de todo lo relacionado con Vundle
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" Let vundle manage itself:
Plugin ''VundleVim/Vundle.vim''
" Syntax checking plugin
Plugin ''scrooloose/syntastic''
call vundle#end()
filetype plugin indent on " Filetype auto-detection
syntax on " Syntax highlighting