summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Pokorný <jpokorny@redhat.com>2014-05-21 14:49:40 +0200
committerJan Pokorný <jpokorny@redhat.com>2014-05-21 14:49:40 +0200
commit229eb60f7349968512de79cc944082b0844c7a1b (patch)
treec4d484b29d7009b8623e10ca65714e3d0d5a8dbf
parent85f50f420a2671f7938a70226df388217c15b4c1 (diff)
downloaddotfiles-229eb60f7349968512de79cc944082b0844c7a1b.tar.gz
dotfiles-229eb60f7349968512de79cc944082b0844c7a1b.tar.xz
dotfiles-229eb60f7349968512de79cc944082b0844c7a1b.zip
Bash config: "terminal flow control key": C^X -> C^P
Signed-off-by: Jan Pokorný <jpokorny@redhat.com>
-rw-r--r--.bashrc3
1 files changed, 2 insertions, 1 deletions
diff --git a/.bashrc b/.bashrc
index 4aa249b..7fcf07d 100644
--- a/.bashrc
+++ b/.bashrc
@@ -55,7 +55,8 @@ test "$(ack --version | head -n1 | sed 's|^ack\s\([0-9]\+\).*|\1|')" -ge 2 \
|| ACK+=" -a"
# http://ruslanspivak.com/2010/11/25/bash-history-incremental-search-forward/
-stty stop ^X
+# ^X goes in to the way of vim's omnicompletion
+stty stop ^P
# op(t)inioned commands
alias tree='tree -a'