I just installed tmux, iTerm2 and Vim. However, when i open Vim i have this bar with arrows on the left side. I don't know if it's there because of Vim or the terminal emulator. Is there a way to remove it?
1 Answers
I see you have found the culprit plugin already, but here's how you could go hunting for it if it happens again.
Before the pathogen#infect() line in your vimrc, first add let g:pathogen_disabled = []
and then for each plugin add a line like call add(g:pathogen_disabled, {plugin-name}). Then remove them or comment them out one by one until the undesirable behavior reappears.
The plugin name corresponds to the folder name in your pathogen bundle folder. To quickly add all the plugins to the disabled list you can do, with your cursor on the line above pathogen#infect()
:read !ls ~/.vim/bundle
This gives you the names of all the plugins that pathogen loads. If your plugins are not in .vim/bundle then adjust the path.
Then do
V'[
to select the lines you just added. Then
:s/.*/call add(g:pathogen_disabled, '\0')
to change each line into a call to add the plugin to the disabled list.
Finally, to answer your actual question, if you have signs and you want to remove them, you can do (see :help signs).
:sign unplace *
- 3,489
- 1
- 14
- 19

set numberin your vimrc file. The>>are called signs, and are probably added by some plugin such as Syntastic which you added to your vimrc file. See: How do I debug my vimrc file? – Martin Tournoij Aug 20 '15 at 12:13execute pathogen#infect()isn't the problem. That's just what's causing your plugin bundles to be loaded. You need to disable individual plugin bundles to see which one is causing it. If you rename the plugin directory so that it ends with a~that will prevent pathogen from loading it. – jamessan Aug 20 '15 at 13:56