Differences between revisions 3 and 6 (spanning 3 versions)
Revision 3 as of 2009-06-16 07:50:26
Size: 403
Editor: SamatJain
Comment:
Revision 6 as of 2012-09-30 20:43:24
Size: 882
Editor: SamatJain
Comment:
Deletions are marked like this. Additions are marked like this.
Line 8: Line 8:
 * [[http://pthree.org/2008/11/23/727/|Aaron Toponce's zsh prompt]]
 * [[http://www.sourceguru.net/archives/188|Fixing zsh window titles]]

 * [[http://fendrich.se/blog/2012/09/28/no/|No, really. Use Zsh. - IFHO]]: On using oh-my-zsh, etc

== Speeding up git completion ==

{{{#!highlight sh
__git_files () {
    _wanted files expl ‘local files’ _files
}
}}}

from [[http://talkings.org/post/5236392664/zsh-and-slow-git-completion|Zsh and slow git completion]]

vi-mode editing:

bindkey -v

Speeding up git completion

   1 __git_files () {
   2     _wanted files expl ‘local files’ _files
   3 }

from Zsh and slow git completion

SamatsWiki: Zsh (last edited 2020-06-10 01:30:41 by SamatJain)