diff options
author | Hennadii Chernyshchyk <genaloner@gmail.com> | 2020-05-05 18:15:45 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-05 08:15:45 -0700 |
commit | d2766b06c8fc50d06765c5c607744cc6b5f5ef0a (patch) | |
tree | 1b3b1a46c44a9c33163d0ef111d70e3bb3fd5784 /src/nvim/eval.lua | |
parent | 48c219829786c14b6e511229a59e2fda32ffe352 (diff) | |
download | rneovim-d2766b06c8fc50d06765c5c607744cc6b5f5ef0a.tar.gz rneovim-d2766b06c8fc50d06765c5c607744cc6b5f5ef0a.tar.bz2 rneovim-d2766b06c8fc50d06765c5c607744cc6b5f5ef0a.zip |
vim-patch:8.1.1120: cannot easily get directory entry matches #12222
Problem: Cannot easily get directory entry matches.
Solution: Add the readdir() function. (Yasuhiro Matsumoto, closes vim/vim#2439)
https://github.com/vim/vim/commit/543c9b1921d7605498b54afdef518e312f1b4515
closes #12212
Diffstat (limited to 'src/nvim/eval.lua')
-rw-r--r-- | src/nvim/eval.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/eval.lua b/src/nvim/eval.lua index d3e769a7ef..65c4cfe553 100644 --- a/src/nvim/eval.lua +++ b/src/nvim/eval.lua @@ -255,6 +255,7 @@ return { pyeval={args=1}, pyxeval={args=1}, range={args={1, 3}}, + readdir={args={1, 2}}, readfile={args={1, 3}}, reg_executing={}, reg_recording={}, |