diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-07-02 13:46:41 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-07-08 16:34:35 +0200 |
commit | 0b88bf256d629cfe53c94896e140511e7f312b25 (patch) | |
tree | 3eb7c79fcf86397af8e36c14813ebd940d54fe48 /src/nvim/api/vim.c | |
parent | 0ea7e45bc1d1881f505da2b77e0b3e4eb56f12fe (diff) | |
download | rneovim-0b88bf256d629cfe53c94896e140511e7f312b25.tar.gz rneovim-0b88bf256d629cfe53c94896e140511e7f312b25.tar.bz2 rneovim-0b88bf256d629cfe53c94896e140511e7f312b25.zip |
doc: api.txt; deprecate <special>
Diffstat (limited to 'src/nvim/api/vim.c')
-rw-r--r-- | src/nvim/api/vim.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c index 8ab0c0ebda..2bc31b2812 100644 --- a/src/nvim/api/vim.c +++ b/src/nvim/api/vim.c @@ -141,7 +141,7 @@ Integer nvim_input(String keys) /// /// @param str String to be converted. /// @param from_part Legacy Vim parameter. Usually true. -/// @param do_lt Also translate <lt>. Does nothing if `special` is false. +/// @param do_lt Also translate <lt>. Ignored if `special` is false. /// @param special Replace |keycodes|, e.g. <CR> becomes a "\n" char. /// @see replace_termcodes /// @see cpoptions |