diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-05-20 22:20:21 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-05-20 22:20:32 +0200 |
commit | bdd73fc07ff8bcf9502f9c6a980a278b9e7b8f27 (patch) | |
tree | 615c16ee4276f53f54f8d99352ec7e3386339eff /test/functional/api/vim_spec.lua | |
parent | bfb9cf1fc3fb377e4ca1430e95435fe7ad06282b (diff) | |
download | rneovim-bdd73fc07ff8bcf9502f9c6a980a278b9e7b8f27.tar.gz rneovim-bdd73fc07ff8bcf9502f9c6a980a278b9e7b8f27.tar.bz2 rneovim-bdd73fc07ff8bcf9502f9c6a980a278b9e7b8f27.zip |
api/nvim_replace_termcodes: Document keycodes behavior
Diffstat (limited to 'test/functional/api/vim_spec.lua')
-rw-r--r-- | test/functional/api/vim_spec.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/functional/api/vim_spec.lua b/test/functional/api/vim_spec.lua index 61ec6ea829..161682b973 100644 --- a/test/functional/api/vim_spec.lua +++ b/test/functional/api/vim_spec.lua @@ -368,6 +368,11 @@ describe('api', function() '<LeftMouse>', true, true, true)) end) + it('converts keycodes', function() + eq('\nx\27x\rx<x', helpers.nvim('replace_termcodes', + '<NL>x<Esc>x<CR>x<lt>x', true, true, true)) + end) + it('does not crash when transforming an empty string', function() -- Actually does not test anything, because current code will use NULL for -- an empty string. |