X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=doc%2Fgrmlzshrc.t2t;h=46b0170e947cd6c779ee033204f09623e50dc03b;hb=5f07a91fbbec4a04c9dec58355ba94472cfbadb0;hp=8f4c88d4eefb6c8acbe3783aa6fd8d0b046c468c;hpb=dbcbf31dee2c4a60dd2aa484f90225d22fefee24;p=grml-etc-core.git diff --git a/doc/grmlzshrc.t2t b/doc/grmlzshrc.t2t index 8f4c88d..46b0170 100644 --- a/doc/grmlzshrc.t2t +++ b/doc/grmlzshrc.t2t @@ -73,6 +73,15 @@ into the right hand side interactive prompt. Supported OSes are //GNU/Linux//, This variable contains the handler to be used by COMMAND_NOT_FOUND (see above) and defaults to "/usr/share/command-not-found/command-not-found". +: **GRML_NO_APT_ALIASES** +A non-empty value inhibits the definition of apt-specific short aliases, +such as ag, agi, ati etc. + +: **GRML_NO_SMALL_ALIASES** +A non-empty value inhibits the definition of 2-letter aliases such as da. +ls, ll, la and other common ls-related aliases are exempt from this, as are +the aliases inhibited by GRML_NO_APT_ALIASES. + : **GRMLSMALL_SPECIFIC** Set this to zero to remove items in zsh config, which do not work in grml-small. @@ -122,6 +131,38 @@ obtained with the zprof builtin command (see zshmodules(1) for details). Specifies the location of the completion dump file. Default: $HOME/.zcompdump. += GRML-ZSHRC SPECIFIC STYLES = + +Styles are a context sensitive configuration mechanism included with zsh. The +shell uses it extensively in sub-systems like the completion and the VCS info +system. It lives outside of the classic shell variable namespace, so it avoids +polluting it. New functionality in grml's zshrc will likely use styles instead +of variables. Some features of the setup (like the directory stack handling) +already use styles. Those styles are documented with the specific features. +This section documents more general styles. + +== Context: :grml:completion:compinit == +This context revolves around the zshrc's //compinit// function call, that +initialises zsh's function based completion system. + +: **arguments** +This style allows the injection of arguments to the command line that is used +to run compinit. It is a list style and its default is the empty list. Using +this style, it's possible to add **-i** to //compinit// in order to disable +//compaudit//. +\ +``` +zstyle ':grml:completion:compinit' arguments -i +``` +\ +Only do this, if you know what sort of security checks are disabled if +//compaudit// is not active and if that's acceptable with your specific setup. +\ +This style has to be set at the point that Grml's zshrc runs //compinit//. A +possible way to achieve this is to set it in //~/.zshrc.pre// (see AUXILIARY +FILES below for details). + + = FEATURE DESCRIPTION = This is an in depth description of non-standard features implemented by //grmlzshrc//. @@ -439,8 +480,9 @@ to: **'zsh: '** via zsh's vcs_info. == PERSISTENT HISTORY == If you got commands you consider important enough to be included in every -shell's history, you can put them into ~/.important_commands and they will be -available via the usual history lookup widgets. +shell's history, you can put them into $GRML_IMPORTANT_COMMANDS (which defaults +for backward compatibility to ~/.important_commands) and they will be available +via the usual history lookup widgets. = REFERENCE = @@ -570,7 +612,7 @@ Use case: you type "mv abc ~/testa/testb/testc/" and remember that the directory does not exist yet -> press **CTRL-xM** and problem solved. : **CTRL-x-p** -Searches the last occurence of string before the cursor in the command history. +Searches the last occurrence of string before the cursor in the command history. : **CTRL-x-z** Display help on keybindings and zsh line editor. Press consecutively to page through content. @@ -582,7 +624,7 @@ Brings a job, which got suspended with CTRL-z back to foreground. === Customisation === To customise keybindings, you can just use zsh's bindkey utility. However, if -you plan to to use the `//zle-line-init//' or `//zle-line-finish//' hooks +you plan to use the `//zle-line-init//' or `//zle-line-finish//' hooks yourself, make sure you call the following functions in the respective hook: - **zle-line-init**: //zle-smkx// @@ -768,7 +810,7 @@ Runs a command in zsh with profiling enabled (See startup variable ZSH_PROFILE_RC above). : **salias()** -Creates an alias whith sudo prepended, if $EUID is not zero. Run "salias -h" +Creates an alias with sudo prepended, if $EUID is not zero. Run "salias -h" for details. See also xunfunction() below. : **simple-extract()**