Vim command shortcut :E for :Explore does not work because of :ELP
from: http://stackoverflow.com/questions/31695455/vim-how-do-i-disable-the-default-logipat-plugin
Question:
In Vim 7.4, there’s a default plugin called “LogiPat”. A command this plugin exposes is :ELP , which is shadowing another command I use a lot :Explore . For that last command I always use :E but since LogiPat exposes :ELP , I need to type in :Ex which is more work.
Answer:
This is a bug in the LogiPat plugin:
" Load Once: {{{1 if &cp || exists("loaded_logipat") finish endif let g:loaded_LogiPat = "v3"It sets g:loaded_LogiPat but checks for loaded_logipat . The workaround is to set
let g:loaded_logipat = 1in your .vimrc .