From 3e87ce3fb6c2623345f9cf9076d6187483e9bc2f Mon Sep 17 00:00:00 2001 From: druckdev <63563978+druckdev@users.noreply.github.com> Date: Fri, 31 Jul 2020 16:35:02 +0200 Subject: [PATCH] Set zsh option Substitute aliases internally before completion. --- .config/zsh/.zshrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index fa4c78c..4e398e6 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -43,6 +43,7 @@ setopt NO_BEEP # Do not beep on error in ZLE. setopt C_BASES # Output hexadecimal numbers in the standard C format ('16#FF' -> '0xFF'). setopt CHASE_LINKS # Resolve symbolic links to their true values when changing directory. setopt NO_CLOBBER # '>!' or '>|' must be used to truncate a file, and '>>!' or '>>|' to create a file. +setopt NO_COMPLETE_ALIASES # Substitute internally before completion. setopt COMPLETE_IN_WORD # Complete from the cursor rather than from the end of the word setopt CORRECT # Try to correct the spelling of a command setopt CORRECT_ALL # Try to correct the spelling of all arguments