Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I see <leader> in many .vimrc files, and I am wondering what the meaning of it is? What is it used for? Just a general overview of the purpose and usage.

share|improve this question

4 Answers

up vote 231 down vote accepted

The <Leader> key is mapped to \ by default. So if you have a map of <Leader>t, you can execute it by default with \t. For more detail or re-assigning it using the mapleader variable, see

:help leader

To define a mapping which uses the "mapleader" variable, the special string
"<Leader>" can be used.  It is replaced with the string value of "mapleader".
If "mapleader" is not set or empty, a backslash is used instead.  
Example:
    :map <Leader>A  oanother line <Esc>
Works like:
    :map \A  oanother line <Esc>
But after:
    :let mapleader = ","
It works like:
    :map ,A  oanother line <Esc>

Note that the value of "mapleader" is used at the moment the mapping is
defined.  Changing "mapleader" after that has no effect for already defined
mappings.


share|improve this answer
8  
+1 the change to , is a good one. Much easier to reach than \`, and who users ,` in vim anyway? – Gabe Moothart Nov 19 '09 at 16:05
Thanks for the help, this definitely points me in the right direction. – Bob Martens Nov 19 '09 at 16:09
5  
@Gabe Moothart. :h , gives you "Repeat latest f, t, F or T in opposite direction [count] times." It is quite convenient. – Maxim Kim Nov 20 '09 at 12:34
5  
There's also a a good writeup here: stevelosh.com/blog/2010/09/coming-home-to-vim/#using-the-leader – Sukotto May 27 '11 at 18:45
@sehe Yes you're right, not sure how I missed that given it's right at the top! I've deleted my comment. – KomodoDave Nov 20 '12 at 11:08

The "Leader key" is a way of extending the power of VIM's shortcuts by using sequences of keys to perform a command. The default leader key is backslash. Therefore, if you have a map of <Leader>Q, you can perform that action by typing \Q.

share|improve this answer
Thanks for the help, brain wasn't working today. – Bob Martens Nov 19 '09 at 15:58
thanks @Manni for the edit. Forgot about this autoformatting stuff... – Mikeage Nov 20 '09 at 7:32
1  
thanks.. that should be the answer.. "The <Leader> key by default its \" – Orlando Apr 9 '12 at 15:10
1  
+1 Concise "human" explanation and mentioning the default is extremely helpful. – KomodoDave Sep 2 '12 at 18:00
Yeah, most people aren't here because they couldn't read the help file. They're here because they read it and it's written in greek. Thank you. +1 – Milimetric Oct 12 '12 at 13:52

Be aware that when you do press your <leader> key you have only 1000ms (by default) to enter the command following it.

This is exacerbated because there is no visual feedback (by default) that you have pressed your <leader> key and vim is awaiting the command; and so there is also no visual way to know when this time out has happened.

If you add set showcmd to your vimrc then you will see your <leader> key appear in the bottom right hand corner of vim (to the left of the cursor location) and perhaps more importantly you will see it disappear when the time out happens.

The length of the timeout can also be set in your vimrc, see :help timeoutlen for more information.

share|improve this answer

In my system its the \ key. it's used for commands so that you can combine it with other chars.

share|improve this answer
I'll have to check my configs, I probably left it at that. – Bob Martens Nov 19 '09 at 15:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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