diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-06-29 09:12:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-29 09:12:01 +0200 |
commit | 21a1f1f552c1d79165cdb51e9e1297d4a4fe9eb6 (patch) | |
tree | 820cdbb0a08e643753960fe6be91f47f4e181e6f /runtime/doc | |
parent | 01fc5097d3b6921fce5c159e5c772dc1590eb847 (diff) | |
parent | 606ec8b70874095a62289f1df3934eca78625742 (diff) | |
download | rneovim-21a1f1f552c1d79165cdb51e9e1297d4a4fe9eb6.tar.gz rneovim-21a1f1f552c1d79165cdb51e9e1297d4a4fe9eb6.tar.bz2 rneovim-21a1f1f552c1d79165cdb51e9e1297d4a4fe9eb6.zip |
Merge pull request #19133 from famiu/feat/api/cmd_support_filter
feat(api): make `nvim_parse_cmd` and `nvim_cmd` support :filter
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/api.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/runtime/doc/api.txt b/runtime/doc/api.txt index 1d7a783bf1..46f4bc63c9 100644 --- a/runtime/doc/api.txt +++ b/runtime/doc/api.txt @@ -1944,6 +1944,11 @@ nvim_parse_cmd({str}, {opts}) *nvim_parse_cmd()* is treated as the start of a comment. • mods: (dictionary) |:command-modifiers|. + • filter: (dictionary) |:filter|. + • pattern: (string) Filter pattern. Empty string if + there is no filter. + • force: (boolean) Whether filter is inverted or not. + • silent: (boolean) |:silent|. • emsg_silent: (boolean) |:silent!|. • sandbox: (boolean) |:sandbox|. |