diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-04-26 00:23:11 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-26 00:23:11 +0800 |
commit | 907018e547c9b989781667d2cf951e1abf99ab9d (patch) | |
tree | 23f7f371bc8a4fb7e2968efc01dd9ab9aa08a7b9 /src/nvim/generators/gen_eval.lua | |
parent | 7e0d66801297677ecbb6b35d0c9139e672920be4 (diff) | |
download | rneovim-907018e547c9b989781667d2cf951e1abf99ab9d.tar.gz rneovim-907018e547c9b989781667d2cf951e1abf99ab9d.tar.bz2 rneovim-907018e547c9b989781667d2cf951e1abf99ab9d.zip |
vim-patch:8.2.3139: functions for string manipulation are spread out (#23316)
Problem: Functions for string manipulation are spread out.
Solution: Move string related functions to a new source file. (Yegappan
Lakshmanan, closes vim/vim#8470)
https://github.com/vim/vim/commit/a2438132a675be4dde3acbdf03ba1fdb2f09427c
Co-authored-by: Yegappan Lakshmanan <yegappan@yahoo.com>
Diffstat (limited to 'src/nvim/generators/gen_eval.lua')
-rw-r--r-- | src/nvim/generators/gen_eval.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/generators/gen_eval.lua b/src/nvim/generators/gen_eval.lua index e574efdf99..7d531bc228 100644 --- a/src/nvim/generators/gen_eval.lua +++ b/src/nvim/generators/gen_eval.lua @@ -35,6 +35,7 @@ hashpipe:write([[ #include "nvim/quickfix.h" #include "nvim/runtime.h" #include "nvim/search.h" +#include "nvim/strings.h" #include "nvim/sign.h" #include "nvim/testing.h" |