summaryrefslogtreecommitdiff
path: root/src/proto/normal.pro
diff options
context:
space:
mode:
authorYegappan Lakshmanan <yegappan@yahoo.com>2022-01-29 13:06:40 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-29 13:06:40 +0000
commit4dc0dd869972ddafc7d9ee5ea765645b818a6dc9 (patch)
tree1b59dc8582e8236af2059d4bc640d48a0f9d8285 /src/proto/normal.pro
parent97c554d5149c2aa4a43d689c59563e77277265d4 (diff)
downloadvim-git-4dc0dd869972ddafc7d9ee5ea765645b818a6dc9.tar.gz
patch 8.2.4252: generating the normal command table at runtime is inefficientv8.2.4252
Problem: Generating the normal command table at runtime is inefficient. Solution: Generate the table with a Vim script and put it in a header file. (Yegappan Lakshmanan, closes #9648)
Diffstat (limited to 'src/proto/normal.pro')
-rw-r--r--src/proto/normal.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/normal.pro b/src/proto/normal.pro
index ad0e95ab5..70c0b97fc 100644
--- a/src/proto/normal.pro
+++ b/src/proto/normal.pro
@@ -1,5 +1,5 @@
/* normal.c */
-void init_normal_cmds(void);
+void f_internal_get_nv_cmdchar(typval_T *argvars, typval_T *rettv);
void normal_cmd(oparg_T *oap, int toplevel);
void check_visual_highlight(void);
void end_visual_mode(void);