Mercurial > vim
view src/proto/digraph.pro @ 28069:236b80af9833 v8.2.4559
patch 8.2.4559: getmousepos() returns the screen column
Commit: https://github.com/vim/vim/commit/533870a98501fac2b51ef4bc489fac3a055a41a9
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Mar 13 15:52:44 2022 +0000
patch 8.2.4559: getmousepos() returns the screen column
Problem: getmousepos() returns the screen column. (Ernie Rael)
Solution: Return the text column, as documented.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 13 Mar 2022 17:00:03 +0100 |
parents | 0082503ff2ff |
children |
line wrap: on
line source
/* digraph.c */ int do_digraph(int c); char_u *get_digraph_for_char(int val_arg); int get_digraph(int cmdline); int digraph_get(int char1, int char2, int meta_char); void putdigraph(char_u *str); void listdigraphs(int use_headers); void f_digraph_get(typval_T *argvars, typval_T *rettv); void f_digraph_getlist(typval_T *argvars, typval_T *rettv); void f_digraph_set(typval_T *argvars, typval_T *rettv); void f_digraph_setlist(typval_T *argvars, typval_T *rettv); char *keymap_init(void); void ex_loadkeymap(exarg_T *eap); void keymap_clear(garray_T *kmap); /* vim: set ft=c : */