diff options
author | Michael Ennen <mike.ennen@gmail.com> | 2016-11-24 23:13:30 -0700 |
---|---|---|
committer | Michael Ennen <mike.ennen@gmail.com> | 2016-12-06 15:52:48 -0700 |
commit | 6fea2dfd26cb902d7b2f52f53ccca9befef2b442 (patch) | |
tree | a12933cbd0a18015e69221df92e7d9294ceaeb44 /src/nvim/eval.lua | |
parent | 61150294967f2522cb1774e29e49a3386d3bcee5 (diff) | |
download | rneovim-6fea2dfd26cb902d7b2f52f53ccca9befef2b442.tar.gz rneovim-6fea2dfd26cb902d7b2f52f53ccca9befef2b442.tar.bz2 rneovim-6fea2dfd26cb902d7b2f52f53ccca9befef2b442.zip |
vim-patch:7.4.1685
Problem: There is no easy way to get all the information about a match.
Solution: Add matchstrpos(). (Ozaki Kiichi)
https://github.com/vim/vim/commit/7fed5c18f8577b75404b80d8b9a9907b1bbd27e4
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 bea25b36f3..61a5438d8c 100644 --- a/src/nvim/eval.lua +++ b/src/nvim/eval.lua @@ -198,6 +198,7 @@ return { matchend={args={2, 4}}, matchlist={args={2, 4}}, matchstr={args={2, 4}}, + matchstrpos={args={2,4}}, max={args=1}, min={args=1}, mkdir={args={1, 3}}, |