The normal behavior in VS is that Home goes to the soft beginning of line (BOL) unless the cursor is already there, in which case it brings you to the hard BOL (all the way left). Then, if the cursor is at hard BOL, hitting Home again brings you to soft BOL and so on.
In my vimrc file, I have
set vsvim_useeditordefaults
" Make hard BOL into soft BOL
map 0 ^
Neither setting causes the desire Home behavior, unfortunately (although I can use 0 to get to soft BOL if I remember).
The normal behavior in VS is that Home goes to the soft beginning of line (BOL) unless the cursor is already there, in which case it brings you to the hard BOL (all the way left). Then, if the cursor is at hard BOL, hitting Home again brings you to soft BOL and so on.
In my vimrc file, I have
Neither setting causes the desire Home behavior, unfortunately (although I can use
0
to get to soft BOL if I remember).