Skip to content

Instantly share code, notes, and snippets.

@morsdyce
Forked from elentok/gist:3193556
Created June 15, 2014 14:29
Show Gist options
  • Save morsdyce/8e1dff96a3909410d83e to your computer and use it in GitHub Desktop.
Save morsdyce/8e1dff96a3909410d83e to your computer and use it in GitHub Desktop.
Vim Hebrew edit mode
imap <f2> <c-o>:call ToggleHebrew()<cr>
map <f2> :call ToggleHebrew()<cr>
func! ToggleHebrew()
if &rl
set norl
set keymap=
else
set rl
set keymap=hebrew
end
endfunc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment