]> git.madduck.net Git - etc/zsh.git/blob - .zsh/zshrc/80_zle

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

update URL and copyright
[etc/zsh.git] / .zsh / zshrc / 80_zle
1 # zshrc/80_zle
2 #
3 # Configure the zsh line editor
4 #
5 # Copyright © 1994–2017 martin f. krafft <madduck@madduck.net>
6 # Released under the terms of the Artistic Licence 2.0
7 #
8 # Source repository: http://git.madduck.net/v/etc/zsh.git
9 #
10
11 # automatically escape URLs
12 # /usr/share/zsh*/functions/Zle/url-quote-magic
13 autoload -U url-quote-magic
14 zle -N self-insert url-quote-magic
15 setopt no_nomatch
16
17 # http://www.zsh.org/mla/users/2006/msg00399.html
18 autoload      edit-command-line
19 zle -N        edit-command-line
20 bindkey '\ee' edit-command-line
21
22 _insert_datestamp() { LBUFFER+=${(%):-'%D{%Y.%m.%d}'}:; }
23 zle -N insert-datestamp _insert_datestamp
24 bindkey '\et' insert-datestamp
25
26 # prefix search (up to cursor position)
27 autoload history-search-end
28 zle -N history-beginning-search-backward-end history-search-end
29 zle -N history-beginning-search-forward-end  history-search-end
30 bindkey "\e[5~" history-beginning-search-backward-end # PageUp
31 bindkey "\e[6~" history-beginning-search-forward-end  # PageDown
32
33 _insert_last_typed_word() { zle insert-last-word -- 0 -1 };
34 zle -N _insert_last_typed_word;
35 bindkey "\em" _insert_last_typed_word
36
37 autoload insert-unicode-char
38 zle -N insert-unicode-char
39 bindkey '^Xi' insert-unicode-char
40
41 # jump behind the first word on the cmdline to add options
42 function _jump_after_first_word() {
43     local words
44     words=(${(z)BUFFER})
45
46     if (( ${#words} <= 1 )) ; then
47         CURSOR=${#BUFFER}
48     else
49         CURSOR=${#${words[1]}}
50     fi
51 }
52 zle -N _jump_after_first_word
53 bindkey '^x1' _jump_after_first_word
54
55 # vim:ft=zsh