Vim Tips Wiki
No edit summary
(→‎Comments: need plugin manager code)
 
(48 intermediate revisions by 6 users not shown)
Line 1: Line 1:
  +
{{TipNew
If Vim is misbehaving there are some steps that you can follow:
 
  +
|id=1676
=Generic troubleshooting=
 
  +
|previous=1675
==Discard Vim executable==
 
  +
|next=1677
Run <tt>vim -N -u NONE</tt> and see if the problem persists.
 
  +
|created=September 6, 2011
  +
|complexity=basic
  +
|author=Raimondi
  +
|version=7.0
  +
|subpage=/201109
  +
|category1=Getting started
  +
|category2=Troubleshooting
  +
|category3=Usage
  +
}}
  +
Sometimes a basic feature of Vim does not work as expected. The following instructions can help eliminate possible sources of the problem.
   
 
==General troubleshooting==
* The problem persists. That means the problem could be on the Vim executable. [[#Verify enabled features|Verify enabled features]].
 
  +
===Check Vim without customizations===
* The problem went away. It is time to [[#Discard vimrc|discard the vimrc]].
 
  +
Run the following command from your terminal and see if the problem persists (if wanted, replace "<code>vim</code>" with "<code>gvim</code>"):
  +
<pre>
  +
vim -N -u NONE -i NONE
  +
</pre>
   
  +
You will need to manually enable anything like filetype detection, syntax highlighting, etc. that are needed to troubleshoot the problem.
==Verify enabled features==
 
 
*'''If the problem persists''', that means the problem could be in the Vim executable or official runtime files. Go and [[#Verify required features|verify the enabled features]].
Check the feature you need was enabled when Vim was built. Use the <tt>:version</tt> command to see if said feature is enabled.
 
 
*'''If the problem went away''', it is time to [[#Check Vim with just your .vimrc|test your vimrc]].
   
 
===Verify required features===
* Some/any needed features are disabled. Build Vim with desired feature enabled or use your package manager to install it.
 
 
Check the feature you need was enabled when Vim was built. Use the <code>:version</code> command to see if that feature is enabled.
* All needed features are enabled. '''What to do here?'''
 
 
*'''Some/any needed features are disabled'''. Build Vim with desired feature enabled or use your package manager to install a Vim version that has them enabled.
  +
*'''All needed features are enabled'''. Consider 3rd party libraries. For example, the command-T plugin requires that your system ruby be the same as that which was linked with Vim.
   
==Discard vimrc==
+
===Check Vim with just your .vimrc===
Run <tt>vim -N --noplugin</tt> and see if the problem persists.
+
Run Vim with following arguments and see if the problem disappears:
  +
<pre>
* The problem persists. The reason of your pain is your vimrc.
 
  +
vim -N --noplugin -i NONE
* The problem went away. The next step is to [[#Discard plugins|discard the plugins]].
 
  +
</pre>
   
 
*'''If the problem persists''', the reason of your pain is inside your [[#vimrc|vimrc]].
==Discard plugins==
 
 
*'''If the problem went away''', the next step is to [[#Check Vim with just your plugins|rule out the plugins]].
Run vim -N -u NORC and see if the problem persists.
 
   
  +
===Check Vim with just your plugins===
* The problem persists. It looks like the issue is related to a plugin.
 
  +
Back to your terminal and run Vim like this:
* The problem went away. It seems like Vim is running in compatible mode, verify that with :verbose set cp? to also see where it's being set.
 
  +
<pre>
  +
vim -N -u NORC -i NONE
  +
</pre>
   
  +
*'''If the problem persists''', the issue is related to one or more plugins, [[#Plugins|find out which]].
=Specific troubleshooting=
 
 
*'''If the problem went away''', maybe the problem is that Vim is running in compatible mode, verify that with <code>:verbose set cp?</code> to also see where it is being set.
==Plugins==
 
  +
==VIMRC==
 
 
==Specific troubleshooting==
==Mappings==
 
==Options==
+
===Plugins===
  +
If you have no idea which plugin(s) might be causing the problem, use a binary search method to isolate the errant plugin(s).
  +
  +
# Disable half of your plugins and retest Vim.
 
# Test again to see if the problem persists or has gone away.
  +
## '''If the problem went away''', the disabled set contain your bad plugin. Keep half of the disabled plugins disabled and re-enable the other half. You now have less disabled plugins to test. '''Go back to step 2'''.
  +
## '''If the problem persists''', the enabled set contain your bad plugin. Disable half of your remaining plugins and keep the other remaining half enabled. You now have less enabled plugins to test. '''Go back to step 2'''.
  +
# If you can isolate one or a set of plugins causing the problem:
  +
## Make sure you have the latest version of those plugins installed.
  +
## Check the plugin page to see if there are any known conflicts with other plugins or known failures for a given Vim version.
  +
## Consider replacing the plugin with a competing solution.
  +
  +
===vimrc===
  +
The [https://github.com/dahu/VimLint VimLint] plugin was designed to help identify erroneous vimrc settings.
  +
  +
*Ensure you '''have''' a personal vimrc file (file <code>~/.vimrc</code> on Linux, or <code>$HOME/_vimrc</code> on Windows).
  +
*Ensure your vimrc contains at least:
  +
<pre>
  +
set nocompatible
  +
syntax on
  +
filetype plugin indent on
  +
set hidden
  +
</pre>
  +
  +
*Ensure your vimrc does '''not''' have:
  +
<pre>
  +
set compatible or set cp
  +
set smartindent or set si
  +
set cindent or set cin
  +
set lisp
  +
set gdefault or set gd
  +
set edcompatible or set ed
  +
set exrc or set ex
  +
set insertmode or set im
  +
set noloadplugins or set nolpl
  +
set nomagic
  +
set nomodeline or set noml
  +
</pre>
  +
  +
*If Vim finds the command <code>finish</code> anywhere in your vimrc it will stop sourcing the rest of the file. So you can use it to do a binary search as described in [[#Plugins|Plugins]] to identify the problematic line.
  +
*Ensure <code>:echo $SHELL</code> is correct. You will need to use a POSIX shell for full Vim compatibility. The fish shell is known to not be compatible.
  +
*Ensure <code>:echo $TERM</code> is correct. Check TermSettings for your terminal type.
  +
 
===Mappings===
  +
A custom mapping may not work because it was overwritten by a plugin. The following command will tell you if <code>aa</code> is mapped to something and, if so, where the mapping was created.
  +
<pre>
  +
:verbose map aa
  +
</pre>
  +
  +
Use the appropriate <code>:map</code> command for the mapping you are testing, see <code>:help :map-modes</code> for more details.
  +
  +
===Options===
  +
Many plugins change options when they are sourced, filetype is set, etc. So, you might find yourself wondering why an option is not set as you expect. From inside Vim, type this command:
  +
<pre>
  +
:verbose set myoption?
  +
</pre>
  +
  +
That displays the value of the given option and where it was set. Replace <code>myoption</code> with the option being tested, and remember to include the "<code>?</code>" (the query causes the value to be displayed; omitting it might set the option).
  +
  +
For local options that inherit its value, that command would not specify where the value was set. '''What to do in this case?'''
  +
  +
==Comments==
  +
Should explain the use of the <code>-i</code> flag, and also mention that the viminfo file can be the cause of issues (especially slowness in loading apparently).
  +
----
  +
Also need to talk about how to get various plugin managers to start up without your .vimrc when doing -u NORC.

Latest revision as of 23:30, 28 July 2013

Tip 1676 Printable Monobook Previous Next

created September 6, 2011 · complexity basic · author Raimondi · version 7.0


Sometimes a basic feature of Vim does not work as expected. The following instructions can help eliminate possible sources of the problem.

General troubleshooting[]

Check Vim without customizations[]

Run the following command from your terminal and see if the problem persists (if wanted, replace "vim" with "gvim"):

vim -N -u NONE -i NONE

You will need to manually enable anything like filetype detection, syntax highlighting, etc. that are needed to troubleshoot the problem.

Verify required features[]

Check the feature you need was enabled when Vim was built. Use the :version command to see if that feature is enabled.

  • Some/any needed features are disabled. Build Vim with desired feature enabled or use your package manager to install a Vim version that has them enabled.
  • All needed features are enabled. Consider 3rd party libraries. For example, the command-T plugin requires that your system ruby be the same as that which was linked with Vim.

Check Vim with just your .vimrc[]

Run Vim with following arguments and see if the problem disappears:

vim -N --noplugin -i NONE
  • If the problem persists, the reason of your pain is inside your vimrc.
  • If the problem went away, the next step is to rule out the plugins.

Check Vim with just your plugins[]

Back to your terminal and run Vim like this:

vim -N -u NORC -i NONE
  • If the problem persists, the issue is related to one or more plugins, find out which.
  • If the problem went away, maybe the problem is that Vim is running in compatible mode, verify that with :verbose set cp? to also see where it is being set.

Specific troubleshooting[]

Plugins[]

If you have no idea which plugin(s) might be causing the problem, use a binary search method to isolate the errant plugin(s).

  1. Disable half of your plugins and retest Vim.
  2. Test again to see if the problem persists or has gone away.
    1. If the problem went away, the disabled set contain your bad plugin. Keep half of the disabled plugins disabled and re-enable the other half. You now have less disabled plugins to test. Go back to step 2.
    2. If the problem persists, the enabled set contain your bad plugin. Disable half of your remaining plugins and keep the other remaining half enabled. You now have less enabled plugins to test. Go back to step 2.
  3. If you can isolate one or a set of plugins causing the problem:
    1. Make sure you have the latest version of those plugins installed.
    2. Check the plugin page to see if there are any known conflicts with other plugins or known failures for a given Vim version.
    3. Consider replacing the plugin with a competing solution.

vimrc[]

The VimLint plugin was designed to help identify erroneous vimrc settings.

  • Ensure you have a personal vimrc file (file ~/.vimrc on Linux, or $HOME/_vimrc on Windows).
  • Ensure your vimrc contains at least:
set nocompatible
syntax on
filetype plugin indent on
set hidden
  • Ensure your vimrc does not have:
set compatible      or    set cp
set smartindent     or    set si
set cindent         or    set cin
set lisp
set gdefault        or    set gd
set edcompatible    or    set ed
set exrc            or    set ex
set insertmode      or    set im
set noloadplugins   or    set nolpl
set nomagic
set nomodeline      or    set noml
  • If Vim finds the command finish anywhere in your vimrc it will stop sourcing the rest of the file. So you can use it to do a binary search as described in Plugins to identify the problematic line.
  • Ensure :echo $SHELL is correct. You will need to use a POSIX shell for full Vim compatibility. The fish shell is known to not be compatible.
  • Ensure :echo $TERM is correct. Check TermSettings for your terminal type.

Mappings[]

A custom mapping may not work because it was overwritten by a plugin. The following command will tell you if aa is mapped to something and, if so, where the mapping was created.

:verbose map aa

Use the appropriate :map command for the mapping you are testing, see :help :map-modes for more details.

Options[]

Many plugins change options when they are sourced, filetype is set, etc. So, you might find yourself wondering why an option is not set as you expect. From inside Vim, type this command:

:verbose set myoption?

That displays the value of the given option and where it was set. Replace myoption with the option being tested, and remember to include the "?" (the query causes the value to be displayed; omitting it might set the option).

For local options that inherit its value, that command would not specify where the value was set. What to do in this case?

Comments[]

Should explain the use of the -i flag, and also mention that the viminfo file can be the cause of issues (especially slowness in loading apparently).


Also need to talk about how to get various plugin managers to start up without your .vimrc when doing -u NORC.