Mercurial > vim
view src/proto/termlib.pro @ 31881:df061831a85f v9.0.1273
patch 9.0.1273: "1v" may select block with wrong size
Commit: https://github.com/vim/vim/commit/8f531662e28c37560bf5ac20a059bf00d01ee5a4
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Feb 1 17:33:18 2023 +0000
patch 9.0.1273: "1v" may select block with wrong size
Problem: "1v" may select block with wrong size. (Evgeni Chasnovski)
Solution: Compute "curswant" in the right line. (closes https://github.com/vim/vim/issues/11925)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 01 Feb 2023 18:45:04 +0100 |
parents | 21b0a39d13ed |
children |
line wrap: on
line source
/* termlib.c */ int tgetent(char *tbuf, char *term); int tgetflag(char *id); int tgetnum(char *id); char *tgetstr(char *id, char **buf); char *tgoto(char *cm, int col, int line); int tputs(char *cp, int affcnt, void (*outc)(unsigned int)); /* vim: set ft=c : */