From 0f229aed589c6c0dc2a31a8d0e81d388a9ae4cb6 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Mon, 31 May 2010 18:18:37 +0200 Subject: [PATCH] add zle keybinding to insert a datestamp Signed-off-by: martin f. krafft --- .zsh/zshrc/80_zle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.zsh/zshrc/80_zle b/.zsh/zshrc/80_zle index daa066d..bdcdfd9 100644 --- a/.zsh/zshrc/80_zle +++ b/.zsh/zshrc/80_zle @@ -19,4 +19,8 @@ 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 -- 2.39.2