Vim Dvorak keybindings (rebindings :) - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T03:06:29Z http://stackoverflow.com/feeds/question/165231 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/165231/vim-dvorak-keybindings-rebindings 9 Vim Dvorak keybindings (rebindings :) cdleary 2008-10-03T00:30:43Z 2009-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#165252 16 Answer by Adam Davis for Vim Dvorak keybindings (rebindings :) Adam Davis 2008-10-03T00:41:15Z 2009-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 &lt;C-w&gt;&lt;C-w&gt; no T &lt;C-w&gt;&lt;C-r&gt; no H 8&lt;Down&gt; no T 8&lt;Up&gt; no D &lt;C-w&gt;&lt;C-r&gt; </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>&lt;C-w&gt;&lt;C-w&gt;</code> -also- 'N'</li> <li>Swap windows <code>&lt;C-w&gt;&lt;C-r&gt;</code> -also- 'D' </li> </ul> <p>-Adam</p> http://stackoverflow.com/questions/165231/vim-dvorak-keybindings-rebindings/166064#166064 1 Answer by Aristotle Pagaltzis for Vim Dvorak keybindings (rebindings :) Aristotle Pagaltzis 2008-10-03T09:18:02Z 2008-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#166254 8 Answer by axa for Vim Dvorak keybindings (rebindings :) axa 2008-10-03T10:32:32Z 2008-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#192174 2 Answer by slacker for Vim Dvorak keybindings (rebindings :) slacker 2008-10-10T16:34:26Z 2008-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#483885 4 Answer by Nick C for Vim Dvorak keybindings (rebindings :) Nick C 2009-01-27T15:37:38Z 2009-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>