Mercurial > vim
view src/proto/mark.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 | 8eed1e9389bb |
children | 814fcbca4d8d |
line wrap: on
line source
/* mark.c */ int setmark(int c); int setmark_pos(int c, pos_T *pos, int fnum); void setpcmark(void); void checkpcmark(void); pos_T *movemark(int count); pos_T *movechangelist(int count); pos_T *getmark_buf(buf_T *buf, int c, int changefile); pos_T *getmark(int c, int changefile); pos_T *getmark_buf_fnum(buf_T *buf, int c, int changefile, int *fnum); pos_T *getnextmark(pos_T *startpos, int dir, int begin_line); void fmarks_check_names(buf_T *buf); int check_mark(pos_T *pos); void clrallmarks(buf_T *buf); char_u *fm_getname(fmark_T *fmark, int lead_len); void ex_marks(exarg_T *eap); void ex_delmarks(exarg_T *eap); void ex_jumps(exarg_T *eap); void ex_clearjumps(exarg_T *eap); void ex_changes(exarg_T *eap); void mark_adjust(linenr_T line1, linenr_T line2, long amount, long amount_after); void mark_adjust_nofold(linenr_T line1, linenr_T line2, long amount, long amount_after); void mark_col_adjust(linenr_T lnum, colnr_T mincol, long lnum_amount, long col_amount, int spaces_removed); void cleanup_jumplist(win_T *wp, int loadfiles); void copy_jumplist(win_T *from, win_T *to); void free_jumplist(win_T *wp); void set_last_cursor(win_T *win); void free_all_marks(void); xfmark_T *get_namedfm(void); void f_getmarklist(typval_T *argvars, typval_T *rettv); /* vim: set ft=c : */