aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-06-21 13:42:21 +1200
committerTom Ryder <tom@sanctum.geek.nz>2020-06-21 13:42:21 +1200
commit439328ea0425f38d0ab9d12c90575672df496354 (patch)
tree939f12d3211cc3f78844ce6ddf99267520723b94
parentAdd a few completion color settings (diff)
downloaddotfiles-439328ea0425f38d0ab9d12c90575672df496354.tar.gz
dotfiles-439328ea0425f38d0ab9d12c90575672df496354.zip
Enable bracketed paste mode for Bash
-rw-r--r--readline/inputrc3
1 files changed, 3 insertions, 0 deletions
diff --git a/readline/inputrc b/readline/inputrc
index 3ac134cd..0da55708 100644
--- a/readline/inputrc
+++ b/readline/inputrc
@@ -27,6 +27,9 @@ set menu-complete-display-prefix on
# Don't display control characters like ^C if I input them
set echo-control-characters off
+# Detect terminal pastes and don't treat the characters like keyboard input
+set enable-bracketed-paste on
+
# Expand tilde to full path on completion
set expand-tilde on