X-Git-Url: https://git.madduck.net/etc/zsh.git/blobdiff_plain/e7aef48f33e934106d1a50201d9f098f9886d7ec..0f229aed589c6c0dc2a31a8d0e81d388a9ae4cb6:/.zsh/zshrc/80_zle?ds=sidebyside

diff --git a/.zsh/zshrc/80_zle b/.zsh/zshrc/80_zle
index da99e0c..bdcdfd9 100644
--- a/.zsh/zshrc/80_zle
+++ b/.zsh/zshrc/80_zle
@@ -14,4 +14,13 @@ autoload -U url-quote-magic
 zle -N self-insert url-quote-magic
 setopt no_nomatch
 
+# http://www.zsh.org/mla/users/2006/msg00399.html
+autoload      edit-command-line
+zle -N        edit-command-line
+bindkey '\ee' edit-command-line
+
+_insert_datestamp() { LBUFFER+=${(%):-'%D{%Y.%m.%d}'}:; }
+zle -N insert-datestamp _insert_datestamp
+bindkey '^t' insert-datestamp
+
 # vim:ft=zsh