2009/4/15 Ruby: > > in the "regular" vim, I used to be able to select a block of text, > then hit "shift >" to indent this block of text. > > Now with mac vim, this no longer work - the key combination will just > erase the block I selected ... I suspect this behavior has something > to do with being able to select/highlight the text with shift + up/ > down arrow. > > can anyone suggest a workaround or did I do something wrong?
You have probably set 'selectmode' to include "key" -- perhaps you added the line "let macvim_hig_shift_movement = 1" to your .vimrc? Try ":set selectmode=" to not enter select mode on Shift+Arrow key and see if that fixes it. Then read up on ":h 'selectmode", ":h 'keymodel", and ":h select-mode". Björn --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_mac" maillist. For more information, visit http://www.vim.org/maillist.php -~----------~----~----~----~------~----~------~--~---
