mirror of
https://github.com/neovim/neovim.git
synced 2025-09-06 03:18:16 +00:00
Merge pull request #23174 from neovim/backport-23005-to-release-0.9
[Backport release-0.9] fix(ruler): fix some ruler issues with no statusline
This commit is contained in:
@@ -1052,11 +1052,11 @@ int showmode(void)
|
|||||||
clear_showcmd();
|
clear_showcmd();
|
||||||
}
|
}
|
||||||
|
|
||||||
// If the last window has no status line and global statusline is disabled,
|
// If the current or last window has no status line and global statusline is disabled,
|
||||||
// the ruler is after the mode message and must be redrawn
|
// the ruler is after the mode message and must be redrawn
|
||||||
win_T *last = curwin->w_floating ? curwin : lastwin_nofloating();
|
win_T *ruler_win = curwin->w_status_height == 0 ? curwin : lastwin_nofloating();
|
||||||
if (redrawing() && last->w_status_height == 0 && global_stl_height() == 0) {
|
if (redrawing() && ruler_win->w_status_height == 0 && global_stl_height() == 0) {
|
||||||
win_redr_ruler(last);
|
win_redr_ruler(ruler_win);
|
||||||
}
|
}
|
||||||
|
|
||||||
redraw_cmdline = false;
|
redraw_cmdline = false;
|
||||||
|
@@ -348,7 +348,8 @@ static void win_redr_custom(win_T *wp, bool draw_winbar, bool draw_ruler)
|
|||||||
} else {
|
} else {
|
||||||
row = is_stl_global ? (Rows - (int)p_ch - 1) : W_ENDROW(wp);
|
row = is_stl_global ? (Rows - (int)p_ch - 1) : W_ENDROW(wp);
|
||||||
fillchar = fillchar_status(&attr, wp);
|
fillchar = fillchar_status(&attr, wp);
|
||||||
maxwidth = is_stl_global ? Columns : wp->w_width;
|
const bool in_status_line = wp->w_status_height != 0 || is_stl_global;
|
||||||
|
maxwidth = in_status_line && !is_stl_global ? wp->w_width : Columns;
|
||||||
stl_clear_click_defs(wp->w_status_click_defs, wp->w_status_click_defs_size);
|
stl_clear_click_defs(wp->w_status_click_defs, wp->w_status_click_defs_size);
|
||||||
wp->w_status_click_defs = stl_alloc_click_defs(wp->w_status_click_defs, maxwidth,
|
wp->w_status_click_defs = stl_alloc_click_defs(wp->w_status_click_defs, maxwidth,
|
||||||
&wp->w_status_click_defs_size);
|
&wp->w_status_click_defs_size);
|
||||||
@@ -374,8 +375,8 @@ static void win_redr_custom(win_T *wp, bool draw_winbar, bool draw_ruler)
|
|||||||
if (col < (maxwidth + 1) / 2) {
|
if (col < (maxwidth + 1) / 2) {
|
||||||
col = (maxwidth + 1) / 2;
|
col = (maxwidth + 1) / 2;
|
||||||
}
|
}
|
||||||
maxwidth = maxwidth - col;
|
maxwidth -= col;
|
||||||
if (!wp->w_status_height && !is_stl_global) {
|
if (!in_status_line) {
|
||||||
grid = &msg_grid_adj;
|
grid = &msg_grid_adj;
|
||||||
row = Rows - 1;
|
row = Rows - 1;
|
||||||
maxwidth--; // writing in last column may cause scrolling
|
maxwidth--; // writing in last column may cause scrolling
|
||||||
@@ -388,7 +389,9 @@ static void win_redr_custom(win_T *wp, bool draw_winbar, bool draw_ruler)
|
|||||||
opt_scope = ((*wp->w_p_stl != NUL) ? OPT_LOCAL : 0);
|
opt_scope = ((*wp->w_p_stl != NUL) ? OPT_LOCAL : 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
col += is_stl_global ? 0 : wp->w_wincol;
|
if (in_status_line && !is_stl_global) {
|
||||||
|
col += wp->w_wincol;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (maxwidth <= 0) {
|
if (maxwidth <= 0) {
|
||||||
@@ -494,7 +497,8 @@ void win_redr_ruler(win_T *wp)
|
|||||||
|
|
||||||
// Don't draw the ruler while doing insert-completion, it might overwrite
|
// Don't draw the ruler while doing insert-completion, it might overwrite
|
||||||
// the (long) mode message.
|
// the (long) mode message.
|
||||||
if (wp == lastwin && lastwin->w_status_height == 0 && !is_stl_global) {
|
win_T *ruler_win = curwin->w_status_height == 0 ? curwin : lastwin_nofloating();
|
||||||
|
if (wp == ruler_win && ruler_win->w_status_height == 0 && !is_stl_global) {
|
||||||
if (edit_submode != NULL) {
|
if (edit_submode != NULL) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -507,7 +511,7 @@ void win_redr_ruler(win_T *wp)
|
|||||||
|
|
||||||
// Check if not in Insert mode and the line is empty (will show "0-1").
|
// Check if not in Insert mode and the line is empty (will show "0-1").
|
||||||
int empty_line = (State & MODE_INSERT) == 0
|
int empty_line = (State & MODE_INSERT) == 0
|
||||||
&& *ml_get_buf(curwin->w_buffer, curwin->w_cursor.lnum, false) == NUL;
|
&& *ml_get_buf(wp->w_buffer, wp->w_cursor.lnum, false) == NUL;
|
||||||
|
|
||||||
int width;
|
int width;
|
||||||
int row;
|
int row;
|
||||||
|
@@ -239,6 +239,25 @@ describe('cmdline', function()
|
|||||||
|
|
|
|
||||||
]])
|
]])
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
-- oldtest: Test_rulerformat_position()
|
||||||
|
it("ruler has correct position with 'rulerformat' set", function()
|
||||||
|
local screen = Screen.new(20, 3)
|
||||||
|
screen:set_default_attr_ids {
|
||||||
|
[0] = {bold = true, foreground = Screen.colors.Blue}, -- NonText
|
||||||
|
}
|
||||||
|
screen:attach()
|
||||||
|
meths.set_option('ruler', true)
|
||||||
|
meths.set_option('rulerformat', 'longish')
|
||||||
|
meths.set_option('laststatus', 0)
|
||||||
|
meths.set_option('winwidth', 1)
|
||||||
|
feed [[<C-W>v<C-W>|<C-W>p]]
|
||||||
|
screen:expect [[
|
||||||
|
│^ |
|
||||||
|
{0:~ }│{0:~}|
|
||||||
|
longish |
|
||||||
|
]]
|
||||||
|
end)
|
||||||
end)
|
end)
|
||||||
|
|
||||||
describe('cmdwin', function()
|
describe('cmdwin', function()
|
||||||
|
@@ -2276,6 +2276,166 @@ describe('float window', function()
|
|||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
it("correct ruler position in current float with 'rulerformat' set", function()
|
||||||
|
command 'set ruler rulerformat=fish:<><'
|
||||||
|
meths.open_win(0, true, {relative='editor', width=9, height=3, row=0, col=5})
|
||||||
|
if multigrid then
|
||||||
|
screen:expect{grid=[[
|
||||||
|
## grid 1
|
||||||
|
[2:----------------------------------------]|
|
||||||
|
[2:----------------------------------------]|
|
||||||
|
[2:----------------------------------------]|
|
||||||
|
[2:----------------------------------------]|
|
||||||
|
[2:----------------------------------------]|
|
||||||
|
[2:----------------------------------------]|
|
||||||
|
[3:----------------------------------------]|
|
||||||
|
## grid 2
|
||||||
|
|
|
||||||
|
{0:~ }|
|
||||||
|
{0:~ }|
|
||||||
|
{0:~ }|
|
||||||
|
{0:~ }|
|
||||||
|
{0:~ }|
|
||||||
|
## grid 3
|
||||||
|
fish:<>< |
|
||||||
|
## grid 4
|
||||||
|
{1:^ }|
|
||||||
|
{2:~ }|
|
||||||
|
{2:~ }|
|
||||||
|
]], float_pos={
|
||||||
|
[4] = {{id = 1001}, "NW", 1, 0, 5, true, 50};
|
||||||
|
}, win_viewport={
|
||||||
|
[2] = {win = {id = 1000}, topline = 0, botline = 2, curline = 0, curcol = 0, linecount = 1, sum_scroll_delta = 0};
|
||||||
|
[4] = {win = {id = 1001}, topline = 0, botline = 2, curline = 0, curcol = 0, linecount = 1, sum_scroll_delta = 0};
|
||||||
|
}}
|
||||||
|
else
|
||||||
|
screen:expect{grid=[[
|
||||||
|
{1:^ } |
|
||||||
|
{0:~ }{2:~ }{0: }|
|
||||||
|
{0:~ }{2:~ }{0: }|
|
||||||
|
{0:~ }|
|
||||||
|
{0:~ }|
|
||||||
|
{0:~ }|
|
||||||
|
fish:<>< |
|
||||||
|
]]}
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
|
||||||
|
it('does not show ruler of not-last current float during ins-completion', function()
|
||||||
|
screen:try_resize(50,9)
|
||||||
|
command 'set ruler showmode'
|
||||||
|
meths.open_win(0, false, {relative='editor', width=3, height=3, row=0, col=0})
|
||||||
|
meths.open_win(0, false, {relative='editor', width=3, height=3, row=0, col=5})
|
||||||
|
feed '<c-w>w'
|
||||||
|
neq('', meths.win_get_config(0).relative)
|
||||||
|
neq(funcs.winnr '$', funcs.winnr())
|
||||||
|
if multigrid then
|
||||||
|
screen:expect{grid=[[
|
||||||
|
## grid 1
|
||||||
|
[2:--------------------------------------------------]|
|
||||||
|
[2:--------------------------------------------------]|
|
||||||
|
[2:--------------------------------------------------]|
|
||||||
|
[2:--------------------------------------------------]|
|
||||||
|
[2:--------------------------------------------------]|
|
||||||
|
[2:--------------------------------------------------]|
|
||||||
|
[2:--------------------------------------------------]|
|
||||||
|
[2:--------------------------------------------------]|
|
||||||
|
[3:--------------------------------------------------]|
|
||||||
|
## grid 2
|
||||||
|
|
|
||||||
|
{0:~ }|
|
||||||
|
{0:~ }|
|
||||||
|
{0:~ }|
|
||||||
|
{0:~ }|
|
||||||
|
{0:~ }|
|
||||||
|
{0:~ }|
|
||||||
|
{0:~ }|
|
||||||
|
## grid 3
|
||||||
|
0,0-1 All |
|
||||||
|
## grid 4
|
||||||
|
{1: }|
|
||||||
|
{2:~ }|
|
||||||
|
{2:~ }|
|
||||||
|
## grid 5
|
||||||
|
{1:^ }|
|
||||||
|
{2:~ }|
|
||||||
|
{2:~ }|
|
||||||
|
]], float_pos={
|
||||||
|
[5] = {{id = 1002}, "NW", 1, 0, 5, true, 50};
|
||||||
|
[4] = {{id = 1001}, "NW", 1, 0, 0, true, 50};
|
||||||
|
}, win_viewport={
|
||||||
|
[2] = {win = {id = 1000}, topline = 0, botline = 2, curline = 0, curcol = 0, linecount = 1, sum_scroll_delta = 0};
|
||||||
|
[4] = {win = {id = 1001}, topline = 0, botline = 2, curline = 0, curcol = 0, linecount = 1, sum_scroll_delta = 0};
|
||||||
|
[5] = {win = {id = 1002}, topline = 0, botline = 2, curline = 0, curcol = 0, linecount = 1, sum_scroll_delta = 0};
|
||||||
|
}}
|
||||||
|
else
|
||||||
|
screen:expect{grid=[[
|
||||||
|
{1: } {1:^ } |
|
||||||
|
{2:~ }{0: }{2:~ }{0: }|
|
||||||
|
{2:~ }{0: }{2:~ }{0: }|
|
||||||
|
{0:~ }|
|
||||||
|
{0:~ }|
|
||||||
|
{0:~ }|
|
||||||
|
{0:~ }|
|
||||||
|
{0:~ }|
|
||||||
|
0,0-1 All |
|
||||||
|
]]}
|
||||||
|
end
|
||||||
|
feed 'i<c-x>'
|
||||||
|
if multigrid then
|
||||||
|
screen:expect{grid=[[
|
||||||
|
## grid 1
|
||||||
|
[2:--------------------------------------------------]|
|
||||||
|
[2:--------------------------------------------------]|
|
||||||
|
[2:--------------------------------------------------]|
|
||||||
|
[2:--------------------------------------------------]|
|
||||||
|
[2:--------------------------------------------------]|
|
||||||
|
[2:--------------------------------------------------]|
|
||||||
|
[2:--------------------------------------------------]|
|
||||||
|
[2:--------------------------------------------------]|
|
||||||
|
[3:--------------------------------------------------]|
|
||||||
|
## grid 2
|
||||||
|
|
|
||||||
|
{0:~ }|
|
||||||
|
{0:~ }|
|
||||||
|
{0:~ }|
|
||||||
|
{0:~ }|
|
||||||
|
{0:~ }|
|
||||||
|
{0:~ }|
|
||||||
|
{0:~ }|
|
||||||
|
## grid 3
|
||||||
|
{3:-- ^X mode (^]^D^E^F^I^K^L^N^O^Ps^U^V^Y)} |
|
||||||
|
## grid 4
|
||||||
|
{1: }|
|
||||||
|
{2:~ }|
|
||||||
|
{2:~ }|
|
||||||
|
## grid 5
|
||||||
|
{1:^ }|
|
||||||
|
{2:~ }|
|
||||||
|
{2:~ }|
|
||||||
|
]], float_pos={
|
||||||
|
[5] = {{id = 1002}, "NW", 1, 0, 5, true, 50};
|
||||||
|
[4] = {{id = 1001}, "NW", 1, 0, 0, true, 50};
|
||||||
|
}, win_viewport={
|
||||||
|
[2] = {win = {id = 1000}, topline = 0, botline = 2, curline = 0, curcol = 0, linecount = 1, sum_scroll_delta = 0};
|
||||||
|
[4] = {win = {id = 1001}, topline = 0, botline = 2, curline = 0, curcol = 0, linecount = 1, sum_scroll_delta = 0};
|
||||||
|
[5] = {win = {id = 1002}, topline = 0, botline = 2, curline = 0, curcol = 0, linecount = 1, sum_scroll_delta = 0};
|
||||||
|
}}
|
||||||
|
else
|
||||||
|
screen:expect{grid=[[
|
||||||
|
{1: } {1:^ } |
|
||||||
|
{2:~ }{0: }{2:~ }{0: }|
|
||||||
|
{2:~ }{0: }{2:~ }{0: }|
|
||||||
|
{0:~ }|
|
||||||
|
{0:~ }|
|
||||||
|
{0:~ }|
|
||||||
|
{0:~ }|
|
||||||
|
{0:~ }|
|
||||||
|
{3:-- ^X mode (^]^D^E^F^I^K^L^N^O^Ps^U^V^Y)} |
|
||||||
|
]]}
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
|
||||||
it('can have minimum size', function()
|
it('can have minimum size', function()
|
||||||
insert("the background text")
|
insert("the background text")
|
||||||
local buf = meths.create_buf(false, true)
|
local buf = meths.create_buf(false, true)
|
||||||
|
@@ -653,3 +653,62 @@ it('ruler is redrawn in cmdline with redrawstatus #22804', function()
|
|||||||
other value |
|
other value |
|
||||||
]])
|
]])
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
it("shows correct ruler in cmdline with no statusline", function()
|
||||||
|
clear()
|
||||||
|
local screen = Screen.new(30, 8)
|
||||||
|
screen:set_default_attr_ids {
|
||||||
|
[1] = {bold = true, foreground = Screen.colors.Blue}, -- NonText
|
||||||
|
[2] = {bold = true, reverse = true}, -- StatusLine
|
||||||
|
[3] = {reverse = true}, -- StatusLineNC
|
||||||
|
}
|
||||||
|
screen:attach()
|
||||||
|
-- Use long ruler to check 'ruler' with 'rulerformat' set has correct width.
|
||||||
|
command [[
|
||||||
|
set ruler rulerformat=%{winnr()}longlonglong ls=0 winwidth=10
|
||||||
|
split
|
||||||
|
wincmd b
|
||||||
|
vsplit
|
||||||
|
wincmd t
|
||||||
|
wincmd |
|
||||||
|
mode
|
||||||
|
]]
|
||||||
|
-- Window 1 is current. It has a statusline, so cmdline should show the
|
||||||
|
-- last window's ruler, which has no statusline.
|
||||||
|
command '1wincmd w'
|
||||||
|
screen:expect [[
|
||||||
|
^ |
|
||||||
|
{1:~ }|
|
||||||
|
{1:~ }|
|
||||||
|
{2:[No Name] 1longlonglong }|
|
||||||
|
│ |
|
||||||
|
{1:~ }│{1:~ }|
|
||||||
|
{1:~ }│{1:~ }|
|
||||||
|
3longlonglong |
|
||||||
|
]]
|
||||||
|
-- Window 2 is current. It has no statusline, so cmdline should show its
|
||||||
|
-- ruler instead.
|
||||||
|
command '2wincmd w'
|
||||||
|
screen:expect [[
|
||||||
|
|
|
||||||
|
{1:~ }|
|
||||||
|
{1:~ }|
|
||||||
|
{3:[No Name] 1longlonglong }|
|
||||||
|
^ │ |
|
||||||
|
{1:~ }│{1:~ }|
|
||||||
|
{1:~ }│{1:~ }|
|
||||||
|
2longlonglong |
|
||||||
|
]]
|
||||||
|
-- Window 3 is current. Cmdline should again show its ruler.
|
||||||
|
command '3wincmd w'
|
||||||
|
screen:expect [[
|
||||||
|
|
|
||||||
|
{1:~ }|
|
||||||
|
{1:~ }|
|
||||||
|
{3:[No Name] 1longlonglong }|
|
||||||
|
│^ |
|
||||||
|
{1:~ }│{1:~ }|
|
||||||
|
{1:~ }│{1:~ }|
|
||||||
|
3longlonglong |
|
||||||
|
]]
|
||||||
|
end)
|
||||||
|
@@ -3598,4 +3598,17 @@ func Test_setcmdline()
|
|||||||
cunmap a
|
cunmap a
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
|
func Test_rulerformat_position()
|
||||||
|
CheckScreendump
|
||||||
|
|
||||||
|
let buf = RunVimInTerminal('', #{rows: 2, cols: 20})
|
||||||
|
call term_sendkeys(buf, ":set ruler rulerformat=longish\<CR>")
|
||||||
|
call term_sendkeys(buf, ":set laststatus=0 winwidth=1\<CR>")
|
||||||
|
call term_sendkeys(buf, "\<C-W>v\<C-W>|\<C-W>p")
|
||||||
|
call VerifyScreenDump(buf, 'Test_rulerformat_position', {})
|
||||||
|
|
||||||
|
" clean up
|
||||||
|
call StopVimInTerminal(buf)
|
||||||
|
endfunc
|
||||||
|
|
||||||
" vim: shiftwidth=2 sts=2 expandtab
|
" vim: shiftwidth=2 sts=2 expandtab
|
||||||
|
Reference in New Issue
Block a user