diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-08-23 20:58:45 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-08-23 20:58:45 +0200 |
commit | 37f4cbd46f5a6f2dd3a48d5fa4324dce37e4bd6c (patch) | |
tree | bed00affbe1920deeeb36b270db9c3b076694c0f /src/vim.h | |
parent | 570497ac409ad448574bb6210cb9c6e573483759 (diff) | |
download | vim-git-37f4cbd46f5a6f2dd3a48d5fa4324dce37e4bd6c.tar.gz |
patch 8.1.1913: not easy to compute the space on the command linev8.1.1913
Problem: Not easy to compute the space on the command line.
Solution: Add v:echospace. (Daniel Hahler, closes #4732)
Diffstat (limited to 'src/vim.h')
-rw-r--r-- | src/vim.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1981,7 +1981,8 @@ typedef int sock_T; #define VV_TERMBLINKRESP 89 #define VV_EVENT 90 #define VV_VERSIONLONG 91 -#define VV_LEN 92 // number of v: vars +#define VV_ECHOSPACE 92 +#define VV_LEN 93 // number of v: vars // used for v_number in VAR_SPECIAL #define VVAL_FALSE 0L |