diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-11-25 01:08:02 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-25 01:08:02 -0800 |
commit | fd5710ae9a3bcbc0f9cbb71de9e39253350ff09c (patch) | |
tree | e4b2b481998ce60f33d60eb4f6bcb59f092ba8d2 /test/functional/cmdline/ctrl_r_spec.lua | |
parent | 967f229f32a3093613feaf99969e44333efd8a0a (diff) | |
download | rneovim-fd5710ae9a3bcbc0f9cbb71de9e39253350ff09c.tar.gz rneovim-fd5710ae9a3bcbc0f9cbb71de9e39253350ff09c.tar.bz2 rneovim-fd5710ae9a3bcbc0f9cbb71de9e39253350ff09c.zip |
doc + extmarks tweaks #11421
- nvim_buf_get_extmarks: rename "amount" => "limit"
- rename `set_extmark_index_from_obj`
Diffstat (limited to 'test/functional/cmdline/ctrl_r_spec.lua')
-rw-r--r-- | test/functional/cmdline/ctrl_r_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/cmdline/ctrl_r_spec.lua b/test/functional/cmdline/ctrl_r_spec.lua index d2dad23e98..a0f3955282 100644 --- a/test/functional/cmdline/ctrl_r_spec.lua +++ b/test/functional/cmdline/ctrl_r_spec.lua @@ -15,7 +15,7 @@ describe('cmdline CTRL-R', function() -- <CR> inserted between lines, NOT after the final line. eq('line1abc\rline2somemoretext', funcs.getcmdline()) - -- Yank 2 lines characterwise, then paste to cmdline. + -- Yank 2 lines charwise, then paste to cmdline. feed([[<C-\><C-N>gg05lyvj:<C-R>0]]) -- <CR> inserted between lines, NOT after the final line. eq('abc\rline2', funcs.getcmdline()) |