You are not logged in.
Pages: 1
This may sound like a fool question but I really need to now what a <leader> key means in vim and how do I know which key is?
--------------------------------
Todos somos muy ignorantes, lo que ocurre es que no todos ignoramos lo mismo.
Recuerda: El arca de Noe fue construida por aficionados, el titanic por profesionales
-----------------------------------------------------------------
Offline
backslash (\) by default.
A simple search of vim tips is incredibly useful:
http://www.vim.org/tips/tip.php?tip_id=940
Offline
is vim better than vi, by how much?
Offline
http://archlinux.org/news/336/
# vim - X capabilities(can drag splits in xterms, runs as server etc), Ruby,python and Perl-support. listens to /etc/vimrc ~/.vimrc
That much.
pacman roulette : pacman -S $(pacman -Slq | LANG=C sort -R | head -n $((RANDOM % 10)))
Offline
This may sound like a fool question but I really need to now what a <leader> key means in vim and how do I know which key is?
For the future, vim has the single most comprehensive help system I've ever seen. Need to know what <leader> means?
:h <leader>
Consequently, you can change the leader with 'mapleader'
let mapleader = "`"
I like the backtick key
Offline
jmrbcu wrote:This may sound like a fool question but I really need to now what a <leader> key means in vim and how do I know which key is?
For the future, vim has the single most comprehensive help system I've ever seen.
I'd say Emacs is about equal WRT to the help system, no?
Offline
I used emacs for a while and I think vim has a better help system, no flame war please!!!.
--------------------------------
Todos somos muy ignorantes, lo que ocurre es que no todos ignoramos lo mismo.
Recuerda: El arca de Noe fue construida por aficionados, el titanic por profesionales
-----------------------------------------------------------------
Offline
no flame war please!!!.
Not at all: that wasn't my intention.
Offline
Pages: 1