From ba84f7fc002ecf92a5bc56fa8902b1625b0f8fc9 Mon Sep 17 00:00:00 2001 From: Felipe Morales Date: Fri, 19 Jun 2015 00:37:11 -0300 Subject: defaults: set 'mouse' to 'a' by default. #2860 Re: https://github.com/neovim/neovim/issues/2676 Also, some documentation changes. --- src/nvim/option.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/nvim/option.c b/src/nvim/option.c index d2361c1875..876a32b913 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -1111,11 +1111,11 @@ static vimoption_T {"more", NULL, P_BOOL|P_VIM, (char_u *)&p_more, PV_NONE, {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT}, - {"mouse", NULL, P_STRING|P_VI_DEF|P_FLAGLIST, + {"mouse", NULL, P_STRING|P_FLAGLIST, (char_u *)&p_mouse, PV_NONE, { (char_u *)"", - (char_u *)0L + (char_u *)"a" } SCRIPTID_INIT}, {"mousefocus", "mousef", P_BOOL|P_VI_DEF, (char_u *)NULL, PV_NONE, -- cgit