wwhat's wrong with my map in my vimrc file?

2016-08-05 Thread 李哲
nnoremap h vnoremap h nnoremap l vnoremap l h used to move to the left window, but the key map dosent work , when I press ctrl + alt + h at the same time -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are replying to. Fo

Re: wwhat's wrong with my map in my vimrc file?

2016-08-05 Thread Christian Brabandt
Hi 李哲! On Fr, 05 Aug 2016, 李哲 wrote: > nnoremap h > vnoremap h > nnoremap l > vnoremap l > > > > h used to move to the left window, > > > but the key map dosent work , when I press ctrl + alt + h at the same time Is that in a terminal or Gvim? Historically, capturing correct Ctrl / Al

Re: wwhat's wrong with my map in my vimrc file?

2016-08-05 Thread Tony Mechelynck
On Fri, Aug 5, 2016 at 11:43 AM, Christian Brabandt wrote: > Hi 李哲! > > On Fr, 05 Aug 2016, 李哲 wrote: > >> nnoremap h >> vnoremap h >> nnoremap l >> vnoremap l >> >> >> >> h used to move to the left window, >> >> >> but the key map dosent work , when I press ctrl + alt + h at the same time > >

How does one load plugin-specific settings after a plugin with the new packages feature?

2016-08-05 Thread Ben Fritz
Previously, when I installed a plugin, I could set up mappings to that plugin's functionality by putting commands in ~/vimfiles/after/plugin/someplugin_maps.vim Now with packages, this no longer works, because loading plugins is done as with ":runtime! plugin/**/*.vim" BEFORE loading packages.

Re: How does one load plugin-specific settings after a plugin with the new packages feature?

2016-08-05 Thread Bram Moolenaar
Ben Fritz wrote: > Previously, when I installed a plugin, I could set up mappings to that > plugin's functionality by putting commands in > ~/vimfiles/after/plugin/someplugin_maps.vim > > Now with packages, this no longer works, because loading plugins is done as > with ":runtime! plugin/**/*