aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-06-16 14:22:26 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-06-16 14:24:11 +1200
commit2836b94c3e655dc5cc95611a9defaffed1cd6c70 (patch)
tree863fd21ecddba585dcd66017a0233159bc908267
parentOverhaul color scheme selection logic (diff)
downloaddotfiles-2836b94c3e655dc5cc95611a9defaffed1cd6c70.tar.gz
dotfiles-2836b94c3e655dc5cc95611a9defaffed1cd6c70.zip
Adjust &term matching regex
-rw-r--r--vim/vimrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/vimrc b/vim/vimrc
index ccb3782f..bcb111e5 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -826,7 +826,7 @@ set synmaxcol=500
" windows terminal emulator PuTTY, and the terminal multiplexer tmux, both of
" which I use heavily.
"
-if &term =~# '^putty\|^tmux'
+if &term =~# '^\%(putty\|tmux\)'
set ttyfast
endif