diff options
| author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-12-01 21:00:20 -0300 |
|---|---|---|
| committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-12-02 07:15:06 -0300 |
| commit | 05f8d261fe305741ea99c6da2096d890b1005bf7 (patch) | |
| tree | d0e0f77facb117bb46bd17441b4499d463621bb3 /src/nvim/option.c | |
| parent | 9ac2e8423a8118284b54cbf3586b57cb310acafa (diff) | |
| download | rneovim-05f8d261fe305741ea99c6da2096d890b1005bf7.tar.gz rneovim-05f8d261fe305741ea99c6da2096d890b1005bf7.tar.bz2 rneovim-05f8d261fe305741ea99c6da2096d890b1005bf7.zip | |
term: Move "set_shellsize" to screen.c as "screen_resize"
Diffstat (limited to 'src/nvim/option.c')
| -rw-r--r-- | src/nvim/option.c | 2 |
1 files changed, 1 insertions, 1 deletions
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. */ |