aboutsummaryrefslogtreecommitdiffstats
path: root/_zsh/60-zle.zsh
diff options
context:
space:
mode:
Diffstat (limited to '_zsh/60-zle.zsh')
-rw-r--r--_zsh/60-zle.zsh20
1 files changed, 0 insertions, 20 deletions
diff --git a/_zsh/60-zle.zsh b/_zsh/60-zle.zsh
deleted file mode 100644
index 92c339d..0000000
--- a/_zsh/60-zle.zsh
+++ /dev/null
@@ -1,20 +0,0 @@
-#
-# zsh/zle.zsh
-# some generic ZLE settings
-# see zshzle(1)
-#
-# 2016-05-29
-#
-
-# Turn off ZLE bracketed paste in dumb and cons25 (DFly default console) term,
-# otherwise turn on ZLE bracketed-paste-magic
-# Credit: http://zmwangx.github.io/blog/2015-09-21-zsh-51-and-bracketed-paste.html
-# See also zshparam(1)
-if [[ ${TERM} == dumb ]] || [[ ${TERM} == cons25 ]]; then
- unset zle_bracketed_paste
-else
- autoload -Uz bracketed-paste-magic
- zle -N bracketed-paste bracketed-paste-magic
-fi
-
-# vim: set ts=8 sw=4 tw=0 fenc=utf-8 ft=zsh: #