Table of Contents
Although the z-shell
provides a powerful set of line editor abstractions, in the form of the `zle`[1] of line editor
#!/usr/bin/env zsh | |
: ${(AA)=tokens::= | |
nil \\u0000 back \\u0008 feed \\u000A cret \\u000D esc \\u001B bang \\u0021 dquote \\u0022 | |
pound \\u0023 dollar \\u0024 perc \\u0025 amp \\u0026 quote \\u0027 popen \\u0028 pclose \\u0029 | |
star \\u002A plus \\u002B comma \\u002C dash \\u002D dot \\u002E slash \\u002F colon \\u003A | |
semic \\u003B hopen \\u003C equals \\003D hclose \\003E qmark \\003F at \\u0040 bopen \\u005B | |
bslash \\u005C bclose \\u005D uscore btick \\u0060 \\u005F copen \\u007B pipe \\u007C cclose \\u007D | |
nbsp \\u00A0 zwsp \\u200B wordj \\u2060 ideo \\u3000 zwnbsp \\uFEFF | |
} | |
function sedder() { print -- "sed -n -r $quote$@$quote" } | |
: h1 | |
http://kinzler.com/me/align/align-1.7.3.tgz | |
sed -i -r 's/^#(.*)/\1/p' ~/.zshrc | |
print ' | |
#!/usr/bin/env zsh | |
setopt extendedglob | |
autoload colors; colors | |
rc=$reset_color | |
zsh Introduction, startup and shutdown | |
zshmisc Syntax, redirection, functions, jobs, tests | |
zshexpn Expansion and substitution | |
zshparam Parameters (variables) | |
zshoptions Options to the shell | |
zshbuiltins Shell builtin commands | |
zshzle The line editor, excluding completion | |
zshcompwid The lowlevel completion facitilities | |
zshcompsys The new completion system (more readable) | |
zshcompctl The old completion system (deprecated) | |
zshmodules Modules loadable with zmodload | |
zshtcpsys Functions for using raw TCP via builtins | |
zshzftpsys Functions for using FTP via builtins | |
zshcontrib Contributed functions for zle etc. | |
zshall Everything in one large manual page | |
' > ~/.zshrc.local | |
exit |
Although the z-shell
provides a powerful set of line editor abstractions, in the form of the `zle`[1] of line editor