Vim Dvorak keybindings (rebindings :) - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T03:06:29Zhttp://stackoverflow.com/feeds/question/165231http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/165231/vim-dvorak-keybindings-rebindings9Vim Dvorak keybindings (rebindings :)cdleary2008-10-03T00:30:43Z2009-11-25T14:39:56Z
<p>Although I played with it before, I'm finally starting to use <a href="http://en.wikipedia.org/wiki/Dvorak_Simplified_Keyboard" rel="nofollow">Dvorak (Simplified)</a> regularly. I've been in a steady relationship with Vim for several years now, and I'm trying to figure out the best way to remap the key bindings to suit my newfound Dvorak skills.</p>
<p>How do <em>you</em> remap Vim's key bindings to best work with Dvorak?</p>
<p>Explanations encouraged!</p>
http://stackoverflow.com/questions/165231/vim-dvorak-keybindings-rebindings/165252#16525216Answer by Adam Davis for Vim Dvorak keybindings (rebindings :)Adam Davis2008-10-03T00:41:15Z2009-11-25T14:39:56Z<p>I use one of the more <a href="http://vim.wikia.com/wiki/Change%5Fcursor%5Fmovement%5Fkeys%5Ffor%5FDvorak%5Flayout" rel="nofollow">common recommended keybindings</a>:</p>
<pre><code>Dvorak it!
no d h
no h j
no t k
no n l
no s :
no S :
no j d
no l n
no L N
Added benefits
no - $
no _ ^
no N <C-w><C-w>
no T <C-w><C-r>
no H 8<Down>
no T 8<Up>
no D <C-w><C-r>
</code></pre>
<p>Movement keys stay in the same location. Other changes:</p>
<ul>
<li>Delete 'd' -> Junk 'j'</li>
<li>Next 'n' -> Look 'l'</li>
<li>Previous 'N' -> Look Back 'L' </li>
</ul>
<p>There were also some changes for familiarity, 's'/'S' can be used to access command mode (the old location of the :, which still works).</p>
<p>Added Benefits</p>
<ul>
<li>End of line '$' -also- '-'</li>
<li>Beginning of line '^' -also- '_'</li>
<li>Move up 8 'T'</li>
<li>Move down 8 'H'</li>
<li>Next window <code><C-w><C-w></code> -also- 'N'</li>
<li>Swap windows <code><C-w><C-r></code> -also- 'D' </li>
</ul>
<p>-Adam</p>
http://stackoverflow.com/questions/165231/vim-dvorak-keybindings-rebindings/166064#1660641Answer by Aristotle Pagaltzis for Vim Dvorak keybindings (rebindings :)Aristotle Pagaltzis2008-10-03T09:18:02Z2008-10-03T09:18:02Z<p>Vim ships with an extensive Dvorak script, but unfortunately it’s not directly <code>source</code>-able, since the file includes a few lines of instructions and another script that undoes its effects. To read it, issue the following command:</p>
<pre><code>:e $VIMRUNTIME/macros/dvorak
</code></pre>
http://stackoverflow.com/questions/165231/vim-dvorak-keybindings-rebindings/166254#1662548Answer by axa for Vim Dvorak keybindings (rebindings :)axa2008-10-03T10:32:32Z2008-10-03T10:32:32Z<p>I don't find that I need to remap the keys for Dvorak -- I very quickly got used to using the default keybindings when I switched layouts.</p>
<p>As a bonus, it means that I don't have to remember two different key combinations when I switch between Dvorak and Qwerty. The difference in keyboard layout is enough that I'm not expecting keys to be in the same location.</p>
http://stackoverflow.com/questions/165231/vim-dvorak-keybindings-rebindings/192174#1921742Answer by slacker for Vim Dvorak keybindings (rebindings :)slacker2008-10-10T16:34:26Z2008-10-10T16:34:26Z<p>I simply use standard qwerty for commands and dvorak for insert mode</p>
<p>Here is <a href="http://vim.wikia.com/wiki/Using_Vim_with_the_Dvorak_keyboard_layout" rel="nofollow">how to set it up</a></p>
http://stackoverflow.com/questions/165231/vim-dvorak-keybindings-rebindings/483885#4838854Answer by Nick C for Vim Dvorak keybindings (rebindings :)Nick C2009-01-27T15:37:38Z2009-01-27T15:37:38Z<p>A little late, but I use the following:</p>
<pre><code>" dvorak remap
noremap h h
noremap t j
noremap n k
noremap s l
noremap l n
noremap L N
" easy access to beginning and end of line
noremap - $
noremap _ ^
</code></pre>
<p>This basically does the following:</p>
<ul>
<li>left-down-up-right are all under the default finger positions on the home row (i.e. not moved over by one as in the default QWERTY Vim mappings)</li>
<li>l/L is used for next/previous search result</li>
<li>use -/_ to reach the end/beginning of a line</li>
</ul>
<p>This seems to work for me...</p>