Vim - How to identify plugin errors

As per the title, is there a way to find out which vim plugin is raising error messages (besides disabling / enabling one by one, of course)? I keep getting below error

Error detected while processing function <SNR>59_clear:
line    2:
E803: ID not found: 4

      

but I cannot figure out which plugin is corrupted.

+3


source to share


1 answer


Run the command :scriptnames

and look at the prefixed line 59

: it will give you the actual script that is being referenced <SNR>59_...

.



+6


source







All Articles