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

I use Vim on a MacBook Pro and in order to input \, I have to type in Maj + Alt + /. Vim's leader key is bound by default on \ but typing the whole "shortcut" doesn't seem to work as a leader key.

Is there a way to make it work or should I use another leader key like , ?

share|improve this question

2 Answers

up vote 6 down vote accepted

I use this command:

let mapleader = ','
share|improve this answer
The problem with that solution is that you lose the default usage of "," which is to reverse a character search. Example fa goes to the next "a" on the line then hit "," it goes to the previous "a". It is really useful if you use ";" to repeat a character search and you need to go back. – Julien Grenier Apr 1 at 15:48

Put the following line into your .vimrc in order to use , as your leader

let mapleader = ','

Save your .vimrc and reopen vim. Your leader is now ,

share|improve this answer

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.