From 906ac99e203a5b193b0df78b6c53819e0cf56ab1 Mon Sep 17 00:00:00 2001 From: Kaleb Elwert Date: Thu, 25 Jan 2018 12:41:58 -0800 Subject: [PATCH] Move INTERACTIVE_COMMENTS from editor to environment --- modules/editor/init.zsh | 1 - modules/environment/init.zsh | 9 +++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/editor/init.zsh b/modules/editor/init.zsh index 50c87288..0c39c0a6 100644 --- a/modules/editor/init.zsh +++ b/modules/editor/init.zsh @@ -15,7 +15,6 @@ fi # setopt BEEP # Beep on error in line editor. -setopt INTERACTIVE_COMMENTS # Enable comments in interactive shell. # # Variables diff --git a/modules/environment/init.zsh b/modules/environment/init.zsh index 79e98a4a..4f3bbfe3 100644 --- a/modules/environment/init.zsh +++ b/modules/environment/init.zsh @@ -32,10 +32,11 @@ fi # General # -setopt COMBINING_CHARS # Combine zero-length punctuation characters (accents) - # with the base character. -setopt RC_QUOTES # Allow 'Henry''s Garage' instead of 'Henry'\''s Garage'. -unsetopt MAIL_WARNING # Don't print a warning message if a mail file has been accessed. +setopt COMBINING_CHARS # Combine zero-length punctuation characters (accents) + # with the base character. +setopt INTERACTIVE_COMMENTS # Enable comments in interactive shell. +setopt RC_QUOTES # Allow 'Henry''s Garage' instead of 'Henry'\''s Garage'. +unsetopt MAIL_WARNING # Don't print a warning message if a mail file has been accessed. # # Jobs