mirror of
https://github.com/neovim/neovim.git
synced 2025-10-17 23:31:51 +00:00
feat(ui): allow to set the highlight namespace per window
- reimplement 'winhl' in terms of highlight namespaces - check for EOF in screen tests (to indicate a likely crash)
This commit is contained in:
@@ -900,7 +900,7 @@ static colnr_T hardcopy_line(prt_settings_T *psettings, int page_line, prt_pos_T
|
||||
}
|
||||
// syntax highlighting stuff.
|
||||
if (psettings->do_syntax) {
|
||||
id = syn_get_id(curwin, ppos->file_line, col, 1, NULL, FALSE);
|
||||
id = syn_get_id(curwin, ppos->file_line, col, 1, NULL, false);
|
||||
if (id > 0) {
|
||||
id = syn_get_final_id(id);
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user