From 05f8d261fe305741ea99c6da2096d890b1005bf7 Mon Sep 17 00:00:00 2001 From: Thiago de Arruda Date: Mon, 1 Dec 2014 21:00:20 -0300 Subject: term: Move "set_shellsize" to screen.c as "screen_resize" --- src/nvim/option.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/option.c') diff --git a/src/nvim/option.c b/src/nvim/option.c index ee70b5bf8a..79ded9f32f 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -5540,7 +5540,7 @@ set_num_option ( *pp = old_value; else if (full_screen ) - set_shellsize((int)Columns, (int)Rows, TRUE); + screen_resize((int)Columns, (int)Rows, TRUE); else { /* Postpone the resizing; check the size and cmdline position for * messages. */ -- cgit From 14f88b68653779a7918b857df9d5679cf4f79ba7 Mon Sep 17 00:00:00 2001 From: Thiago de Arruda Date: Mon, 1 Dec 2014 22:04:15 -0300 Subject: term: Move more mouse functions to mouse.c --- src/nvim/option.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/nvim/option.c') diff --git a/src/nvim/option.c b/src/nvim/option.c index 79ded9f32f..2882d7a511 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -66,6 +66,7 @@ #include "nvim/garray.h" #include "nvim/cursor_shape.h" #include "nvim/move.h" +#include "nvim/mouse.h" #include "nvim/normal.h" #include "nvim/os_unix.h" #include "nvim/path.h" -- cgit