aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/option.c
diff options
context:
space:
mode:
authorFredrik Fornwall <fredrik@fornwall.net>2014-08-07 23:41:39 +0200
committerJustin M. Keyes <justinkz@gmail.com>2014-08-18 03:59:40 +0000
commit6dcd629ed6e61fbebcf715cd1b362773f1f209ec (patch)
tree9c2437cc803480cd87029d86ae81b05ebca1289e /src/nvim/option.c
parentd067ad66ac2b6eb22eef3bfb7efa0007b7af9e5b (diff)
downloadrneovim-6dcd629ed6e61fbebcf715cd1b362773f1f209ec.tar.gz
rneovim-6dcd629ed6e61fbebcf715cd1b362773f1f209ec.tar.bz2
rneovim-6dcd629ed6e61fbebcf715cd1b362773f1f209ec.zip
Make ttyfast default to true on all terminals #1051
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r--src/nvim/option.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c
index 6dc3234dea..6428ef1eb3 100644
--- a/src/nvim/option.c
+++ b/src/nvim/option.c
@@ -1597,7 +1597,7 @@ static struct vimoption
{(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
{"ttyfast", "tf", P_BOOL|P_NO_MKRC|P_VI_DEF,
(char_u *)&p_tf, PV_NONE,
- {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
+ {(char_u *)TRUE, (char_u *)0L} SCRIPTID_INIT},
{"ttymouse", "ttym", P_STRING|P_NODEFAULT|P_NO_MKRC|P_VI_DEF,
#if defined(FEAT_MOUSE) && defined(UNIX)
(char_u *)&p_ttym, PV_NONE,