view src/proto/drawscreen.pro @ 30984:a82629ff46c8 v9.0.0827

patch 9.0.0827: <Home> key in tmux doesn't work when 'term' set to "xterm" Commit: https://github.com/vim/vim/commit/1410d1841bfc4370dec1babe24c6664e06d7c9d9 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Nov 1 22:04:40 2022 +0000 patch 9.0.0827: <Home> key in tmux doesn't work when 'term' set to "xterm" Problem: The <Home> key in tmux doesn't work when 'term' is set to "xterm". (Dominique Pell?) Solution: Only use '@' in a termcap key entry for "1" when ";" follows. (closes #11429)
author Bram Moolenaar <Bram@vim.org>
date Wed, 02 Nov 2022 11:18:58 +0100
parents 68ef14b21d01
children bb797331e21b
line wrap: on
line source

/* drawscreen.c */
int update_screen(int type_arg);
int statusline_row(win_T *wp);
void showruler(int always);
void win_redr_ruler(win_T *wp, int always, int ignore_pum);
void after_updating_screen(int may_resize_shell);
void update_curbuf(int type);
void update_debug_sign(buf_T *buf, linenr_T lnum);
void updateWindow(win_T *wp);
int redraw_asap(int type);
void redraw_after_callback(int call_update_screen, int do_message);
void redraw_later(int type);
void redraw_win_later(win_T *wp, int type);
void redraw_later_clear(void);
void redraw_all_later(int type);
void set_must_redraw(int type);
void redraw_curbuf_later(int type);
void redraw_buf_later(buf_T *buf, int type);
void redraw_buf_line_later(buf_T *buf, linenr_T lnum);
void redraw_buf_and_status_later(buf_T *buf, int type);
void status_redraw_all(void);
void status_redraw_curbuf(void);
void redraw_statuslines(void);
void win_redraw_last_status(frame_T *frp);
void redrawWinline(win_T *wp, linenr_T lnum);
/* vim: set ft=c : */