So I am giving Vim a serious try for coding my Python apps.

However Vim is proving so flexible, I was thinking to use it as my main editor at work (lawyer/legal documents). The problem is that my mother tongue is not English but Greek. So I have mapped Alt+Shift to change between English and Greek keyboard layout. The issue I am experiencing is that I have to press Alt+Shift each time I want to enter a Vim command (to return back to English). So its Alt+Shift when I type my document, then Alt+Shift again to enter Vim commands. This defeats the purpose of using Vim, speed of use.

So my question is simple, is there any way to avoid Alt+Shift for using Vim commands with the Greek language?

link|improve this question

50% accept rate
feedback

1 Answer

up vote 7 down vote accepted

This problem can be solved using Vim keymap option. It allows to define an alternate keyboard mapping to use in Insert, Replace and Command-line modes. There are many predefined keymaps for a large set of languages, you can browse them all in Vim itself using :e $VIMRUNTIME/keymap.

To switch between default and alternate keymap in Insert, Replace or Command-line modes, use Ctrl+^. Changing keymap affects text input only, keyboard behaviour in Normal mode stays default regardless of the current keymap setting. You can leave Insert mode writing Greek, and immediately use Normal mode Vim keybindings without switching keyboard layout. When you return to Insert or Replace mode (or, for example, start searching by /), Vim will switch you back to Greek keymap automatically. That way, keymap is remembered between inserts (except for Command-line mode in which it is necessary to type in ASCII an Ex command first).

To enable UTF-8 Greek keymap permanently add the following line to your .vimrc file.

:set keymap=greek_utf-8

Note that usually there are several keymaps provided for one language, which differ only by encoding, so you can choose one that suits your configuration. With the keymap option set, you are supposed to work in Vim using your system English keyboard layout and switch keymap using Ctrl+^ (and not your system-wide layout switch).

I also recommend setting the options below.

:set iminsert=0
:set imsearch=-1

See :help iminsert and :help imsearch to ensure that it does not contradict with your configuration (i.e. you do not use :lmap or certain Input Method).

There is also a special language mode, which was introduced in Vim earlier than keymap, as far as I know, and allows to achieve somewhat like keymap by manual specifying letter pairs that correspond to the keys on keyboard in the langmap option. Personally, I prefer (and recommend) using keymap instead. (My native language is not English too, and I use similar to the described above keymap configuration.)

In conclusion, all the above said is equally applicable to any other language Vim has a keymap for.

link|improve this answer
2  
You are amazing!!! Your suggestion did not work, but you pointed me to the correct direction. All I had to do was to change set keymap=greek_utf-8 to set keymap = greek_iso-8859-7 . For a stange reason greek utf displays weird characters, the same happens with my firefox when it chooses utf, but iso also work there. Everything else worked like a charm I just press ctrl+^ in edit mode as you suggested and I can change between greek and englis while the command interface remains in english . You are a life savior , thanks. – Kilon Sep 23 '10 at 12:07
Is it possible to use something else than ctrl+^. It's difficult to press Ctrl+Shift+6. – Sergey Aug 3 '11 at 14:51
@Sergey: Ctrl+6 works as well. If it's still uncomfortable for you to type, create an easy to use mapping. For example, to remap it to Ctrl+L use inoremap <c-l> <c-^>. – ib. Aug 4 '11 at 1:40
Ctrl + ^ just opens up a new file in the buffer for me; does not switch languages. – dionyziz Feb 14 at 11:17
@dionyziz: That is because Ctrl+^ switches to the alternate buffer in Normal mode; while in Insert and Command-line modes it toggles language mappings. Compare :help ^^ with :help i_^^ and :help c_^^. – ib. Feb 15 at 11:08
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.