]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
zsh/rc: Use ' instead of " when possible, drop them if unnecessary.
authorSimon Ruderich <simon@ruderich.org>
Sun, 14 Mar 2010 22:56:11 +0000 (23:56 +0100)
committerSimon Ruderich <simon@ruderich.org>
Sun, 14 Mar 2010 22:56:11 +0000 (23:56 +0100)
zsh/rc

diff --git a/zsh/rc b/zsh/rc
index c0a453e4b01e026f6e10f4f4e95f567822d8c414..0e1e2c9023fe8eb749d4d5bc1e6900a684b13616 100644 (file)
--- a/zsh/rc
+++ b/zsh/rc
@@ -120,11 +120,11 @@ my-vi-history-beginning-search-backward() {
         zle vi-forward-char
     fi
 }
-bindkey "^P" my-vi-history-beginning-search-backward
-bindkey -a "^P" history-beginning-search-backward # binding for Vi-mode
+bindkey '^P' my-vi-history-beginning-search-backward
+bindkey -a '^P' history-beginning-search-backward # binding for Vi-mode
 # Here only Vi-mode is necessary as ^P enters Vi-mode and ^N only makes sense
 # after calling ^P.
-bindkey -a "^N" history-beginning-search-forward
+bindkey -a '^N' history-beginning-search-forward
 
 
 # PROMPT SETTINGS
@@ -305,11 +305,11 @@ if [[ $TERM == screen* || $TERM == xterm* || $TERM == rxvt* ]]; then
         [[ -z $window_reset ]] && return
 
         # Reset the window name to 'zsh'.
-        local name="zsh"
+        local name=zsh
         # If the function was called with an argument then reset the window
         # name to '.zsh' (used by clear alias).
         if [[ -n $1 ]]; then
-            name=".zsh"
+            name=.zsh
         fi
 
         # Prepend prefixes like in window_preexec().
@@ -364,7 +364,7 @@ zstyle ':completion:*' completer _complete _match _correct _approximate
 setopt nolistambiguous
 # Allow completions in the middle of a text, i.e. "/usr/bin/<TAB>whatever"
 # completes like "/usr/bin/<TAB>". Useful when adding new options to commands.
-bindkey "^I" expand-or-complete-prefix
+bindkey '^I' expand-or-complete-prefix
 # Try uppercase if the currently typed string doesn't match. This allows
 # typing in lowercase most of the time and completion fixes the case.
 zstyle ':completion:*' matcher-list '' 'm:{a-z}={A-Z}'
@@ -477,7 +477,7 @@ if [[ $(uname) == Linux ]]; then
     # Settings when creating Debian packages.
     DEBEMAIL=simon@ruderich.org
     export DEBEMAIL
-    DEBFULLNAME="Simon Ruderich"
+    DEBFULLNAME='Simon Ruderich'
     export DEBFULLNAME
 
 elif [[ $(uname) == Darwin ]]; then # Mac OS X