Add version restriction to the docs

pull/6/head
Iron-E 4 years ago
parent f6813a55c1
commit 8df9f63b9e
No known key found for this signature in database
GPG Key ID: 19B71B7B7B021D22

@ -147,6 +147,14 @@ FUNCTIONS *libmodal-usage-functions*
*Error you cannot pass a funcref to Lua from Vimscript!
       - If you want to use a |funcref()| for {instruction}, it
       must be the name of the function as a `string`.
       - This only works on Neovim 0.5+. Example: >
       " VIMSCRIPT
       function! s:foo() abort
       echo 'It works'
       call getchar()
       endfunction
       lua require('libmodal').mode.enter('FOO', 's:foo')
<
Note: Some QoL features are available by default when
specifying a `dict`/`table` value for {instruction} that
@ -250,6 +258,14 @@ FUNCTIONS *libmodal-usage-functions*
*Error you cannot pass a funcref to Lua from Vimscript!
       - If you want to use a |funcref()| for {instruction}, it
       must be the name of the function as a `string`.
       - This only works on Neovim 0.5+. Example: >
       " VIMSCRIPT
       function! s:foo() abort
       echo 'It works'
       call getchar()
       endfunction
       lua require('libmodal').prompt.enter('FOO', 's:foo')
<
Note: If you want to create commands with arguments, you will
need to use a `function`.
@ -719,6 +735,12 @@ When submitting an issue, please describe the following:
* Add examples for doing almost everything that this plugin can do, from
Vimscript (although I still think Lua makes it easier).
0.6.3 ~
Fixes: ~
* Fix being unable to paste into Vim's command line after importing
the `libmodal.util.api` table.
0.6.2 ~
Fixes: ~

Loading…
Cancel
Save