diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-05-19 07:42:41 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-05-19 23:15:47 -0400 |
commit | 41828a7302d1ca17d5b84ff55aa9c91bd846ad64 (patch) | |
tree | 51768180132f596d38da94a116da69eba3efe1e2 /src/nvim/eval.lua | |
parent | 83aed410b6fa4e807070b0af3bd89da4d29a812b (diff) | |
download | rneovim-41828a7302d1ca17d5b84ff55aa9c91bd846ad64.tar.gz rneovim-41828a7302d1ca17d5b84ff55aa9c91bd846ad64.tar.bz2 rneovim-41828a7302d1ca17d5b84ff55aa9c91bd846ad64.zip |
vim-patch:8.0.1497: getting the jump list requires parsing the output of :jumps
Problem: Getting the jump list requires parsing the output of :jumps.
Solution: Add getjumplist(). (Yegappan Lakshmanan, closes vim/vim#2609)
https://github.com/vim/vim/commit/4f50588ba336e7f086a72c53f5688c2494fc34b3
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 a7f8461fc3..d4bb69613e 100644 --- a/src/nvim/eval.lua +++ b/src/nvim/eval.lua @@ -131,6 +131,7 @@ return { getfsize={args=1}, getftime={args=1}, getftype={args=1}, + getjumplist={args={0, 2}}, getline={args={1, 2}}, getloclist={args={1, 2}}, getmatches={}, |