diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-05-09 18:59:31 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-05-09 18:59:31 +0200 |
commit | d4aa83af1d691fdabbc8e6aab36db2c96ea4d4b6 (patch) | |
tree | b2388947080bf130e2fcb7da283d91895e3ae63a /src/ex_cmdidxs.h | |
parent | eae1b91fea74842000fc055afc74fe2e7934c6ee (diff) | |
download | vim-git-d4aa83af1d691fdabbc8e6aab36db2c96ea4d4b6.tar.gz |
patch 8.1.1307: cannot reconnect to the X server after it restartedv8.1.1307
Problem: Cannot reconnect to the X server after it restarted.
Solution: Add the :xrestore command. (Adrian Kocis, closes #844)
Diffstat (limited to 'src/ex_cmdidxs.h')
-rw-r--r-- | src/ex_cmdidxs.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ex_cmdidxs.h b/src/ex_cmdidxs.h index 6b96c6cfa..0103a1741 100644 --- a/src/ex_cmdidxs.h +++ b/src/ex_cmdidxs.h @@ -29,8 +29,8 @@ static const unsigned short cmdidxs1[26] = /* v */ 503, /* w */ 521, /* x */ 535, - /* y */ 544, - /* z */ 545 + /* y */ 545, + /* z */ 546 }; /* @@ -64,9 +64,9 @@ static const unsigned char cmdidxs2[26][26] = /* u */ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, /* v */ { 0, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 9, 12, 0, 0, 0, 0, 15, 0, 16, 0, 0, 0, 0, 0 }, /* w */ { 2, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 8, 0, 9, 10, 0, 0, 0, 12, 13, 0, 0, 0, 0 }, - /* x */ { 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0 }, + /* x */ { 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 0, 0, 0, 7, 0, 0, 8, 0, 0, 0, 0, 0 }, /* y */ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, /* z */ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } }; -static const int command_count = 558; +static const int command_count = 559; |