Mercurial > vim
annotate src/proto/cmdexpand.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 | ae38d2e81fca |
children | add09d468c0d |
rev | line source |
---|---|
17779
87a8760babec
patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1 /* cmdexpand.c */ |
27875
ae38d2e81fca
patch 8.2.4463: completion only uses strict matching
Bram Moolenaar <Bram@vim.org>
parents:
27597
diff
changeset
|
2 int cmdline_fuzzy_complete(char_u *fuzzystr); |
17779
87a8760babec
patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
3 int nextwild(expand_T *xp, int type, int options, int escape); |
87a8760babec
patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
4 char_u *ExpandOne(expand_T *xp, char_u *str, char_u *orig, int options, int mode); |
87a8760babec
patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
5 void ExpandInit(expand_T *xp); |
87a8760babec
patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
6 void ExpandCleanup(expand_T *xp); |
27597
4eb2bf8b2f27
patch 8.2.4325: 'wildmenu' only shows few matches
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
7 void cmdline_pum_display(void); |
4eb2bf8b2f27
patch 8.2.4325: 'wildmenu' only shows few matches
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
8 int cmdline_pum_active(void); |
4eb2bf8b2f27
patch 8.2.4325: 'wildmenu' only shows few matches
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
9 void cmdline_pum_remove(void); |
4eb2bf8b2f27
patch 8.2.4325: 'wildmenu' only shows few matches
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
10 void cmdline_pum_cleanup(cmdline_info_T *cclp); |
4eb2bf8b2f27
patch 8.2.4325: 'wildmenu' only shows few matches
Bram Moolenaar <Bram@vim.org>
parents:
22075
diff
changeset
|
11 int cmdline_compl_startcol(void); |
17779
87a8760babec
patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
12 int showmatches(expand_T *xp, int wildmenu); |
87a8760babec
patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
13 char_u *sm_gettail(char_u *s); |
87a8760babec
patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
14 char_u *addstar(char_u *fname, int len, int context); |
87a8760babec
patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
15 void set_cmd_context(expand_T *xp, char_u *str, int len, int col, int use_ccline); |
87a8760babec
patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
16 int expand_cmdline(expand_T *xp, char_u *str, int col, int *matchcount, char_u ***matches); |
87a8760babec
patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
17 void globpath(char_u *path, char_u *file, garray_T *ga, int expand_options); |
22075
eb878f85967e
patch 8.2.1587: loop for handling keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
19053
diff
changeset
|
18 int wildmenu_translate_key(cmdline_info_T *cclp, int key, expand_T *xp, int did_wild_list); |
eb878f85967e
patch 8.2.1587: loop for handling keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
19053
diff
changeset
|
19 int wildmenu_process_key(cmdline_info_T *cclp, int key, expand_T *xp); |
eb878f85967e
patch 8.2.1587: loop for handling keys for the command line is too long
Bram Moolenaar <Bram@vim.org>
parents:
19053
diff
changeset
|
20 void wildmenu_cleanup(cmdline_info_T *cclp); |
17779
87a8760babec
patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
21 void f_getcompletion(typval_T *argvars, typval_T *rettv); |
87a8760babec
patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
22 /* vim: set ft=c : */ |