diff options
author | Abdelhakeem <abdelhakeem.osama@hotmail.com> | 2019-07-10 20:41:31 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-07-27 16:36:56 +0200 |
commit | 691deca2e8449ec0c3b5081ed4fe6076fd820913 (patch) | |
tree | 04ed265132b2456d6af401a1ab1e309dd77e214f /src/nvim/eval.lua | |
parent | a80f691a6a55a57bd1bfa6d4850ca3316e2f4d3f (diff) | |
download | rneovim-691deca2e8449ec0c3b5081ed4fe6076fd820913.tar.gz rneovim-691deca2e8449ec0c3b5081ed4fe6076fd820913.tar.bz2 rneovim-691deca2e8449ec0c3b5081ed4fe6076fd820913.zip |
eval: context: add ctx-family functions
Diffstat (limited to 'src/nvim/eval.lua')
-rw-r--r-- | src/nvim/eval.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/nvim/eval.lua b/src/nvim/eval.lua index 089b08d5d1..0b77a24f7a 100644 --- a/src/nvim/eval.lua +++ b/src/nvim/eval.lua @@ -74,6 +74,11 @@ return { cosh={args=1, func="float_op_wrapper", data="&cosh"}, count={args={2, 4}}, cscope_connection={args={0, 3}}, + ctxget={args={0, 1}}, + ctxpop={}, + ctxpush={args={0, 1}}, + ctxset={args={1, 2}}, + ctxsize={}, cursor={args={1, 3}}, deepcopy={args={1, 2}}, delete={args={1,2}}, |