edenzik / macvim

Automatically exported from code.google.com/p/macvim
0 stars 0 forks source link

Shift-navigation does not provide consistent Mac feel #253

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Hold shift
2. Press Down

What is the expected output? What do you see instead?
Expect to see the same result as typing vj (visual; down). Instead I get 
pagedown.

Please consider making this behavior an option or default in the preferences 
dialog, to be consistent with the Mac experience in other applications.

Original issue reported on code.google.com by fulldec...@gmail.com on 9 Feb 2010 at 4:55

GoogleCodeExporter commented 9 years ago
This is documented in ":h macvim".  You can set MacVim to behave the way you 
want, just look at ":h macvim-
shift-movement". 

Original comment by bjorn.winckler@gmail.com on 9 Feb 2010 at 6:07

GoogleCodeExporter commented 9 years ago
Beautiful, I added

if has("gui_macvim")
  let macvim_hig_shift_movement = 1
endif   

to my .vimrc and everything is working perfectly. Thank you!

Original comment by fulldec...@gmail.com on 9 Feb 2010 at 6:24