Mercurial > dotfiles
annotate .shell.d/50.misc_setup.zsh @ 350:b55a7fe4dfab
hgrc: drop obsolete stuff from [alias], enable showfunc in [diff]
The alias entry for diff (-p) is the same as [diff] showfunc = 1, but
the latter will also do things like improve emails.
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Wed, 15 Oct 2014 16:23:03 -0400 |
parents | 0f226b0af88a |
children |
rev | line source |
---|---|
255
0f226b0af88a
zsh: support for editing current command in $EDTIOR
Augie Fackler <durin42@gmail.com>
parents:
diff
changeset
|
1 # edit current command line in $EDITOR support |
0f226b0af88a
zsh: support for editing current command in $EDTIOR
Augie Fackler <durin42@gmail.com>
parents:
diff
changeset
|
2 autoload edit-command-line |
0f226b0af88a
zsh: support for editing current command in $EDTIOR
Augie Fackler <durin42@gmail.com>
parents:
diff
changeset
|
3 zle -N edit-command-line |
0f226b0af88a
zsh: support for editing current command in $EDTIOR
Augie Fackler <durin42@gmail.com>
parents:
diff
changeset
|
4 bindkey '^X^e' edit-command-line |