diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-06-29 12:58:33 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-06-29 12:58:33 +0200 |
commit | b751546636c71f206733af1bc30415aaab9a0b42 (patch) | |
tree | cb96a703d4c93ebc41b5454b7db16c3e90dd1293 /src/structs.h | |
parent | 560c52d32b3e509710e5e7fd620feb751e97689b (diff) | |
download | vim-git-b751546636c71f206733af1bc30415aaab9a0b42.tar.gz |
updated for version 7.3.1260v7.3.1260
Problem: User completion does not get the whole command line in the command
line window.
Solution: Pass on the whole command line. (Daniel Thau)
Diffstat (limited to 'src/structs.h')
-rw-r--r-- | src/structs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/structs.h b/src/structs.h index bfe1919b6..96435eda7 100644 --- a/src/structs.h +++ b/src/structs.h @@ -493,6 +493,8 @@ typedef struct expand int xp_numfiles; /* number of files found by file name completion */ char_u **xp_files; /* list of files */ + char_u *xp_line; /* text being completed */ + int xp_col; /* cursor position in line */ } expand_T; /* values for xp_backslash */ |