I installed YouCompleteMe using vundle. Then install all the plugins and install YCM with
./install.sh
This is what my vimrc looks like:
syntax on set expandtab set cindent set tabstop=4 retab set shiftwidth=4 set hlsearch set paste set ic set number colorscheme molokai set t_Co=256 set nocompatible " be iMproved, required filetype off " required " set the runtime path to include Vundle and initialize set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() Plugin 'gmarik/Vundle.vim' Plugin 'tpope/vim-fugitive' Plugin 'tpope/vim-repeat' Plugin 'kien/ctrlp.vim' Plugin 'sjl/gundo.vim' Plugin 'Valloric/YouCompleteMe' Plugin 'scrooloose/syntastic' Plugin 'Valloric/ListToggle' call vundle#end() " required filetype plugin indent on "options for syntastic" set statusline+=%
YCM works, but I cannot switch between sentences using TAB, only using the Down and Down arrows and accepting with Enter.
Why is this happening? Is another program using the TAB key?
thanks for the help
source share