diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2015-07-21 23:57:11 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-07-21 23:57:11 -0400 |
commit | 8cbe5265ef22b7f320b6c0dcabd4e74b97114b0b (patch) | |
tree | 2fe1c97a6d51bde8015d4e226ead28f099a3787d | |
parent | 6571c84d54a93e186bccf298bf4a3d0a45ddf28c (diff) | |
parent | a95a5ba8398193cfe0bd3e198a013447769b64ff (diff) | |
download | rneovim-8cbe5265ef22b7f320b6c0dcabd4e74b97114b0b.tar.gz rneovim-8cbe5265ef22b7f320b6c0dcabd4e74b97114b0b.tar.bz2 rneovim-8cbe5265ef22b7f320b6c0dcabd4e74b97114b0b.zip |
Merge #3048 'tui: resize terminal'
-rw-r--r-- | src/nvim/globals.h | 10 | ||||
-rw-r--r-- | src/nvim/option.c | 4 | ||||
-rw-r--r-- | src/nvim/tui/tui.c | 28 |
3 files changed, 31 insertions, 11 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h index c7164ef1f1..9c4f9e3642 100644 --- a/src/nvim/globals.h +++ b/src/nvim/globals.h @@ -59,7 +59,7 @@ /* Values for "starting" */ #define NO_SCREEN 2 /* no screen updating yet */ #define NO_BUFFERS 1 /* not all buffers loaded yet */ -/* 0 not starting anymore */ +/* 0 not starting anymore */ /* * Number of Rows and Columns in the screen. @@ -68,12 +68,16 @@ * They may have different values when the screen wasn't (re)allocated yet * after setting Rows or Columns (e.g., when starting up). */ + +#define DFLT_COLS 80 /* default value for 'columns' */ +#define DFLT_ROWS 24 /* default value for 'lines' */ + EXTERN long Rows /* nr of rows in the screen */ #ifdef DO_INIT - = 24L + = DFLT_ROWS #endif ; -EXTERN long Columns INIT(= 80); /* nr of columns in the screen */ +EXTERN long Columns INIT(= DFLT_COLS); /* nr of columns in the screen */ /* * The characters and attributes cached for the screen. diff --git a/src/nvim/option.c b/src/nvim/option.c index e880e9aadd..94b935fe52 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -537,7 +537,7 @@ static vimoption_T {(char_u *)"", (char_u *)0L} SCRIPTID_INIT}, {"columns", "co", P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR, (char_u *)&Columns, PV_NONE, - {(char_u *)80L, (char_u *)0L} SCRIPTID_INIT}, + {(char_u *)DFLT_COLS, (char_u *)0L} SCRIPTID_INIT}, {"comments", "com", P_STRING|P_ALLOCED|P_VI_DEF|P_COMMA|P_NODUP| P_CURSWANT, (char_u *)&p_com, PV_COM, @@ -1025,7 +1025,7 @@ static vimoption_T {"lines", NULL, P_NUM|P_NODEFAULT|P_NO_MKRC|P_VI_DEF|P_RCLR, (char_u *)&Rows, PV_NONE, { - (char_u *)24L, + (char_u *)DFLT_ROWS, (char_u *)0L } SCRIPTID_INIT}, {"linespace", "lsp", P_NUM|P_VI_DEF|P_RCLR, diff --git a/src/nvim/tui/tui.c b/src/nvim/tui/tui.c index 1deab23b05..a1f56d2695 100644 --- a/src/nvim/tui/tui.c +++ b/src/nvim/tui/tui.c @@ -1,6 +1,7 @@ #include <assert.h> #include <stdbool.h> #include <stdio.h> +#include <limits.h> #include <uv.h> #include <unibilium.h> @@ -350,6 +351,11 @@ static void tui_resize(UI *ui, int width, int height) data->scroll_region.left = 0; data->scroll_region.right = width - 1; data->row = data->col = 0; + + // try to resize the terminal window + char r[16]; // enough for 9999x9999 + snprintf(r, sizeof(r), "\x1b[8;%d;%dt", height, width); + out(ui, r, strlen(r)); } static void tui_clear(UI *ui) @@ -641,12 +647,22 @@ static void update_size(UI *ui) { TUIData *data = ui->data; int width = 0, height = 0; - // 1 - try from a system call(ioctl/TIOCGWINSZ on unix) + + // 1 - look for non-default 'columns' and 'lines' options during startup + if (starting != 0 && (Columns != DFLT_COLS || Rows != DFLT_ROWS)) { + assert(Columns >= INT_MIN && Columns <= INT_MAX); + assert(Rows >= INT_MIN && Rows <= INT_MAX); + width = (int)Columns; + height = (int)Rows; + goto end; + } + + // 2 - try from a system call(ioctl/TIOCGWINSZ on unix) if (!uv_tty_get_winsize(&data->output_handle, &width, &height)) { goto end; } - // 2 - use $LINES/$COLUMNS if available + // 3 - use $LINES/$COLUMNS if available const char *val; int advance; if ((val = os_getenv("LINES")) @@ -656,15 +672,15 @@ static void update_size(UI *ui) goto end; } - // 3- read from terminfo if available + // 4 - read from terminfo if available height = unibi_get_num(data->ut, unibi_lines); width = unibi_get_num(data->ut, unibi_columns); end: if (width <= 0 || height <= 0) { - // use a default of 80x24 - width = 80; - height = 24; + // use the defaults + width = DFLT_COLS; + height = DFLT_ROWS; } ui->width = width; |