diff --git a/bundle/helpful.vim/.github/workflows/update-tags.yml b/bundle/helpful.vim/.github/workflows/update-tags.yml index c0001a5b2..3c7c30978 100644 --- a/bundle/helpful.vim/.github/workflows/update-tags.yml +++ b/bundle/helpful.vim/.github/workflows/update-tags.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: update tags run: make update - name: get date @@ -21,7 +21,7 @@ jobs: id: diff run: echo "::set-output name=diff::$(git diff --name-only data/)" - name: push - uses: actions-x/commit@v2 + uses: actions-x/commit@v5 with: name: Tag Update Bot files: data/tags doc/helpful-version.txt diff --git a/bundle/helpful.vim/README.md b/bundle/helpful.vim/README.md index 7007466a7..f170f90fb 100644 --- a/bundle/helpful.vim/README.md +++ b/bundle/helpful.vim/README.md @@ -8,7 +8,7 @@ introduced or removed features. ## Usage -The command `:HelpfulVersion` takes a Vim pattern to search for helptags and +The command `:HelpfulVersion` takes a subject to search for helptags and display version information. Examples: @@ -16,12 +16,6 @@ Examples: ```vim " Search for a function :HelpfulVersion matchaddpos() - -" Search for keys -:HelpfulVersion <.*> - -" Case-insensitive search -:HelpfulVersion f11\c ``` diff --git a/bundle/helpful.vim/autoload/helpful.vim b/bundle/helpful.vim/autoload/helpful.vim index 630cadca2..bd1d9ec36 100644 --- a/bundle/helpful.vim/autoload/helpful.vim +++ b/bundle/helpful.vim/autoload/helpful.vim @@ -274,14 +274,8 @@ endfunction function! s:_lookup_sort(a, b) abort - if a:a[1] < a:b[1] - return -1 - elseif a:a[1] > a:b[1] - return 1 - endif - - let al = strlen(a:a[0]) - let bl = strlen(a:b[0]) + let al = strlen(a:a) + let bl = strlen(a:b) if al < bl return -1 @@ -289,26 +283,33 @@ function! s:_lookup_sort(a, b) abort return 1 endif + if a:a < a:b + return -1 + elseif a:a > a:b + return 1 + endif + return 0 endfunction " Find helptag using a pattern and print the results. function! helpful#lookup(pattern) abort + " Remove @{lang} pattern + let pattern = substitute(a:pattern, '.\+\zs@\w\+$', '', '') + call s:load_data() + let tags = [] let width = 0 - for tag in keys(s:data) - let m = match(tag, a:pattern) - if m != -1 - call add(tags, [tag, m]) + if stridx(tolower(tag), tolower(pattern)) >= 0 + call add(tags, tag) let width = max([width, strlen(tag)]) endif endfor - let s:search_pattern = a:pattern - for [tag, _] in sort(tags, 's:_lookup_sort') + for tag in sort(tags, 's:_lookup_sort') call s:helptag_version(tag, width) endfor endfunction diff --git a/bundle/helpful.vim/doc/helpful-version.txt b/bundle/helpful.vim/doc/helpful-version.txt index 3f3da9560..6617b7754 100644 --- a/bundle/helpful.vim/doc/helpful-version.txt +++ b/bundle/helpful.vim/doc/helpful-version.txt @@ -1,4 +1,4 @@ -*helpful-version.txt* Generated: 2022-01-04 00:15:34 UTC +*helpful-version.txt* Generated: 2024-06-10 00:15:29 UTC A listing of helptags with the versions they became available or were removed. @@ -20,6 +20,7 @@ A listing of helptags with the versions they became available or were removed. |#{}| + Neovim: +v0.8.0 Vim: +v8.1.1876 |$| @@ -51,6 +52,14 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 Vim: +v7.2.328 +|$NVIM| + + Neovim: +v0.8.0 + +|$NVIM_APPNAME| + + Neovim: +v0.9.0 + |$NVIM_LISTEN_ADDRESS| Neovim: +v0.1.0 @@ -85,14 +94,40 @@ A listing of helptags with the versions they became available or were removed. Vim: +v7.4.1325 +|$XDG_CACHE_HOME| + + Neovim: +v0.10.0 + +|$XDG_CONFIG_DIRS| + + Neovim: +v0.10.0 + |$XDG_CONFIG_HOME| Neovim: +v0.1.5 + Vim: +v9.1.0327 + +|$XDG_DATA_DIRS| + + Neovim: +v0.10.0 |$XDG_DATA_HOME| Neovim: +v0.1.5 +|$XDG_RUNTIME_DIR| + + Neovim: +v0.8.0 + +|$XDG_STATE_HOME| + + Neovim: +v0.8.0 + +|$quote| + + Neovim: +v0.10.0 + Vim: +v8.2.5055 + |%| Neovim: +v0.1.0 @@ -158,6 +193,10 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 Vim: +v7.0001 +|&-default| + + Neovim: +v0.8.0 + |'| Neovim: +v0.1.0 @@ -371,6 +410,18 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 Vim: +v7.0001 +|'b:context_ignore_makefile'| + + Vim: +v9.0.0281 + +|'b:context_include'| + + Vim: +v9.0.0281 + +|'b:mp_metafun'| + + Vim: +v9.0.0281 + |'background'| Neovim: +v0.1.0 @@ -619,12 +670,12 @@ A listing of helptags with the versions they became available or were removed. |'cdh'| - Neovim: +nightly + Neovim: +v0.7.0 Vim: +v8.2.3784 |'cdhome'| - Neovim: +nightly + Neovim: +v0.7.0 Vim: +v8.2.3784 |'cdpath'| @@ -701,6 +752,16 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 Vim: +v7.0001 +|'cinscopedecls'| + + Neovim: +v0.7.0 + Vim: +v8.2.4702 + +|'cinsd'| + + Neovim: +v0.7.0 + Vim: +v8.2.4702 + |'cinw'| Neovim: +v0.1.0 @@ -803,6 +864,7 @@ A listing of helptags with the versions they became available or were removed. |'completepopup'| + Neovim: +v0.10.0 Vim: +v8.1.1882 |'completeslash'| @@ -879,37 +941,37 @@ A listing of helptags with the versions they became available or were removed. |'cscopepathcomp'| - Neovim: +v0.1.0 + Neovim: +v0.1.0 -v0.9.0 Vim: +v7.0001 |'cscopeprg'| - Neovim: +v0.1.0 + Neovim: +v0.1.0 -v0.9.0 Vim: +v7.0001 |'cscopequickfix'| - Neovim: +v0.1.0 + Neovim: +v0.1.0 -v0.9.0 Vim: +v7.0001 |'cscoperelative'| - Neovim: +v0.1.0 + Neovim: +v0.1.0 -v0.9.0 Vim: +v7.3.210 |'cscopetag'| - Neovim: +v0.1.0 + Neovim: +v0.1.0 -v0.9.0 Vim: +v7.0001 |'cscopetagorder'| - Neovim: +v0.1.0 + Neovim: +v0.1.0 -v0.9.0 Vim: +v7.0001 |'cscopeverbose'| - Neovim: +v0.1.0 + Neovim: +v0.1.0 -v0.9.0 Vim: +v7.0001 |'csl'| @@ -919,32 +981,32 @@ A listing of helptags with the versions they became available or were removed. |'cspc'| - Neovim: +v0.1.0 + Neovim: +v0.1.0 -v0.9.0 Vim: +v7.0001 |'csprg'| - Neovim: +v0.1.0 + Neovim: +v0.1.0 -v0.9.0 Vim: +v7.0001 |'csqf'| - Neovim: +v0.1.0 + Neovim: +v0.1.0 -v0.9.0 Vim: +v7.0001 |'csre'| - Neovim: +v0.1.0 + Neovim: +v0.1.0 -v0.9.0 Vim: +v7.3.210 |'cst'| - Neovim: +v0.1.0 + Neovim: +v0.1.0 -v0.9.0 Vim: +v7.0001 |'csto'| - Neovim: +v0.1.0 + Neovim: +v0.1.0 -v0.9.0 Vim: +v7.0001 |'csverb'| @@ -1152,15 +1214,25 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 Vim: +v7.0001 +|'endoffile'| + + Neovim: +v0.9.0 + Vim: +v9.0.0819 + |'endofline'| Neovim: +v0.1.0 - Vim: +v7.0001 + Vim: +v9.0.0816 -v9.0.0819 + +|'eof'| + + Neovim: +v0.9.0 + Vim: +v9.0.0819 |'eol'| Neovim: +v0.1.0 - Vim: +v7.0001 + Vim: +v9.0.0816 -v9.0.0819 |'ep'| @@ -1507,6 +1579,66 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 Vim: +v7.0001 +|'g:context_extra_options'| + + Vim: +v9.0.0609 + +|'g:context_ignore_makefile'| + + Vim: +v9.0.0281 + +|'g:context_include'| + + Vim: +v9.0.0281 + +|'g:mf_other_macros'| + + Vim: +v9.0.0281 + +|'g:mf_plain_macros'| + + Vim: +v9.0.0281 + +|'g:mf_plain_modes'| + + Vim: +v9.0.0281 + +|'g:mp_close_tag'| + + Vim: +v9.0.0281 + +|'g:mp_metafun'| + + Vim: +v9.0.0281 + +|'g:mp_mfplain_macros'| + + Vim: +v9.0.0281 + +|'g:mp_open_tag'| + + Vim: +v9.0.0281 + +|'g:mp_other_macros'| + + Vim: +v9.0.0281 + +|'g:mp_plain_macros'| + + Vim: +v9.0.0281 + +|'g:no_context_maps'| + + Vim: +v9.0.0281 + +|'g:no_mf_maps'| + + Vim: +v9.0.0281 + +|'g:no_mp_maps'| + + Vim: +v9.0.0281 + |'gcol'| Vim: +v7.4.1770 -v7.4.1799 @@ -2089,6 +2221,7 @@ A listing of helptags with the versions they became available or were removed. |'jop'| Neovim: +v0.5.0 + Vim: +v9.0.1921 |'js'| @@ -2098,6 +2231,7 @@ A listing of helptags with the versions they became available or were removed. |'jumpoptions'| Neovim: +v0.5.0 + Vim: +v9.0.1921 |'key'| @@ -2114,6 +2248,10 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 Vim: +v7.0001 +|'keyprotocol'| + + Vim: +v9.0.0930 + |'keywordprg'| Neovim: +v0.1.0 @@ -2134,6 +2272,10 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 Vim: +v7.0001 +|'kpc'| + + Vim: +v9.0.0930 + |'langmap'| Neovim: +v0.1.0 @@ -2194,6 +2336,11 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 Vim: +v7.0001 +|'lispoptions'| + + Neovim: +v0.9.0 + Vim: +v9.0.0761 + |'lispwords'| Neovim: +v0.1.0 @@ -2229,6 +2376,11 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 Vim: +v7.0001 +|'lop'| + + Neovim: +v0.9.0 + Vim: +v9.0.0761 + |'lpl'| Neovim: +v0.1.0 @@ -2329,7 +2481,7 @@ A listing of helptags with the versions they became available or were removed. |'maxmem'| - Neovim: +v0.1.0 -v0.3.0 + Neovim: +v0.8.0 -v0.3.0 Vim: +v7.0001 |'maxmempattern'| @@ -2339,7 +2491,7 @@ A listing of helptags with the versions they became available or were removed. |'maxmemtot'| - Neovim: +v0.1.0 -v0.3.0 + Neovim: +v0.8.0 -v0.3.0 Vim: +v7.0001 |'mco'| @@ -2482,16 +2634,30 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 Vim: +v7.0001 +|'mousemev'| + + Neovim: +v0.8.0 + Vim: +v8.2.4674 + |'mousemodel'| Neovim: +v0.1.0 Vim: +v7.0001 +|'mousemoveevent'| + + Neovim: +v0.8.0 + Vim: +v8.2.4674 + |'mouses'| Neovim: +v0.1.0 Vim: +v7.0001 +|'mousescroll'| + + Neovim: +v0.8.0 + |'mouseshape'| Neovim: +v0.1.0 @@ -2719,10 +2885,12 @@ A listing of helptags with the versions they became available or were removed. |'nobreakindent'| + Neovim: +v0.7.0 Vim: +v7.4.907 |'nobri'| + Neovim: +v0.7.0 Vim: +v7.4.907 |'nobuflisted'| @@ -2730,6 +2898,16 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 Vim: +v7.0001 +|'nocdh'| + + Neovim: +v0.9.0 + Vim: +v9.0.1334 + +|'nocdhome'| + + Neovim: +v0.9.0 + Vim: +v9.0.1334 + |'nocf'| Neovim: +v0.1.0 @@ -2785,12 +2963,12 @@ A listing of helptags with the versions they became available or were removed. |'nocscoperelative'| - Neovim: +v0.1.0 + Neovim: +v0.1.0 -v0.9.0 Vim: +v7.3.1181 |'nocscopetag'| - Neovim: +v0.1.0 + Neovim: +v0.1.0 -v0.9.0 Vim: +v7.0001 |'nocscopeverbose'| @@ -2800,12 +2978,12 @@ A listing of helptags with the versions they became available or were removed. |'nocsre'| - Neovim: +v0.1.0 + Neovim: +v0.1.0 -v0.9.0 Vim: +v7.3.1181 |'nocst'| - Neovim: +v0.1.0 + Neovim: +v0.1.0 -v0.9.0 Vim: +v7.0001 |'nocsverb'| @@ -2894,21 +3072,33 @@ A listing of helptags with the versions they became available or were removed. |'noemo'| + Neovim: +v0.7.0 Vim: +v7.4.1725 |'noemoji'| + Neovim: +v0.7.0 Vim: +v7.4.1725 +|'noendoffile'| + + Neovim: +v0.9.0 + Vim: +v9.0.0819 + |'noendofline'| Neovim: +v0.1.0 - Vim: +v7.0001 + Vim: +v9.0.0816 -v9.0.0819 + +|'noeof'| + + Neovim: +v0.9.0 + Vim: +v9.0.0819 |'noeol'| Neovim: +v0.1.0 - Vim: +v7.0001 + Vim: +v9.0.0816 -v9.0.0819 |'noequalalways'| @@ -2932,7 +3122,7 @@ A listing of helptags with the versions they became available or were removed. |'noex'| - Neovim: +v0.1.0 -v0.4.0 + Neovim: +v0.9.0 -v0.4.0 Vim: +v7.0001 |'noexpandtab'| @@ -2942,7 +3132,7 @@ A listing of helptags with the versions they became available or were removed. |'noexrc'| - Neovim: +v0.1.0 -v0.4.0 + Neovim: +v0.9.0 -v0.4.0 Vim: +v7.0001 |'nofen'| @@ -2987,10 +3177,12 @@ A listing of helptags with the versions they became available or were removed. |'nofs'| + Neovim: +v0.7.0 Vim: +v7.4.907 |'nofsync'| + Neovim: +v0.7.0 Vim: +v7.4.907 |'nogd'| @@ -3020,22 +3212,22 @@ A listing of helptags with the versions they became available or were removed. |'nohk'| - Neovim: +v0.1.0 + Neovim: +v0.1.0 -v0.9.0 Vim: +v7.0001 |'nohkmap'| - Neovim: +v0.1.0 + Neovim: +v0.1.0 -v0.9.0 Vim: +v7.0001 |'nohkmapp'| - Neovim: +v0.1.0 + Neovim: +v0.1.0 -v0.9.0 Vim: +v7.0001 |'nohkp'| - Neovim: +v0.1.0 + Neovim: +v0.1.0 -v0.9.0 Vim: +v7.0001 |'nohls'| @@ -3065,7 +3257,7 @@ A listing of helptags with the versions they became available or were removed. |'noim'| - Neovim: +v0.1.0 + Neovim: +v0.1.0 -v0.8.0 Vim: +v7.0001 |'noimc'| @@ -3105,7 +3297,7 @@ A listing of helptags with the versions they became available or were removed. |'noinsertmode'| - Neovim: +v0.1.0 + Neovim: +v0.1.0 -v0.8.0 Vim: +v7.0001 |'nois'| @@ -3256,6 +3448,16 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 Vim: +v7.0001 +|'nomousemev'| + + Neovim: +v0.9.0 + Vim: +v9.0.1334 + +|'nomousemoveevent'| + + Neovim: +v0.9.0 + Vim: +v9.0.1334 + |'nonu'| Neovim: +v0.1.0 @@ -3422,7 +3624,7 @@ A listing of helptags with the versions they became available or were removed. |'nosecure'| - Neovim: +v0.1.0 + Neovim: +v0.1.0 -v0.9.0 Vim: +v7.0001 |'nosft'| @@ -3500,6 +3702,16 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 Vim: +v7.0001 +|'nosmoothscroll'| + + Neovim: +v0.10.0 + Vim: +v9.0.0640 + +|'nosms'| + + Neovim: +v0.10.0 + Vim: +v9.0.0640 + |'nosn'| Neovim: +v0.1.0 @@ -3525,11 +3737,19 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 Vim: +v7.0001 +|'nosplitscroll'| + + Vim: +v9.0.0445 -v9.0.0647 + |'nospr'| Neovim: +v0.1.0 Vim: +v7.0001 +|'nospsc'| + + Vim: +v9.0.0445 -v9.0.0647 + |'nosr'| Neovim: +v0.1.0 @@ -3604,6 +3824,15 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 Vim: +v7.0001 +|'notermguicolors'| + + Neovim: +v0.7.0 + Vim: +v9.0.1334 + +|'notermsync'| + + Neovim: +v0.10.0 + |'noterse'| Neovim: +v0.1.0 @@ -3622,6 +3851,11 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 Vim: +v7.0001 +|'notgc'| + + Neovim: +v0.7.0 + Vim: +v9.0.1334 + |'notgst'| Neovim: +v0.1.0 @@ -3721,6 +3955,10 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 -v0.1.6 Vim: +v7.0001 +|'nowfb'| + + Neovim: +v0.10.0 + |'nowfh'| Neovim: +v0.1.0 @@ -3750,6 +3988,10 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 Vim: +v7.0001 +|'nowinfixbuf'| + + Neovim: +v0.10.0 + |'nowinfixheight'| Neovim: +v0.1.0 @@ -3950,12 +4192,12 @@ A listing of helptags with the versions they became available or were removed. |'pdev'| - Neovim: +v0.1.0 + Neovim: +v0.1.0 -v0.9.0 Vim: +v7.0001 |'penc'| - Neovim: +v0.1.0 + Neovim: +v0.1.0 -v0.9.0 Vim: +v7.0001 |'perldll'| @@ -3969,12 +4211,12 @@ A listing of helptags with the versions they became available or were removed. |'pexpr'| - Neovim: +v0.1.0 + Neovim: +v0.1.0 -v0.9.0 Vim: +v7.0001 |'pfn'| - Neovim: +v0.1.0 + Neovim: +v0.1.0 -v0.9.0 Vim: +v7.0001 |'ph'| @@ -3984,7 +4226,7 @@ A listing of helptags with the versions they became available or were removed. |'pheader'| - Neovim: +v0.1.0 + Neovim: +v0.1.0 -v0.9.0 Vim: +v7.0001 |'pi'| @@ -3999,17 +4241,17 @@ A listing of helptags with the versions they became available or were removed. |'pmbcs'| - Neovim: +v0.1.0 + Neovim: +v0.1.0 -v0.9.0 Vim: +v7.0007 |'pmbfn'| - Neovim: +v0.1.0 + Neovim: +v0.1.0 -v0.9.0 Vim: +v7.0007 |'popt'| - Neovim: +v0.1.0 + Neovim: +v0.1.0 -v0.9.0 Vim: +v7.0001 |'pp'| @@ -4029,6 +4271,7 @@ A listing of helptags with the versions they became available or were removed. |'previewpopup'| + Neovim: +v0.10.0 Vim: +v8.1.1714 |'previewwindow'| @@ -4068,12 +4311,12 @@ A listing of helptags with the versions they became available or were removed. |'printmbfont'| - Neovim: +v0.1.0 + Neovim: +v0.1.0 -v0.9.0 Vim: +v7.0007 |'printoptions'| - Neovim: +v0.1.0 + Neovim: +v0.1.0 -v0.9.0 Vim: +v7.0001 |'prompt'| @@ -4511,6 +4754,7 @@ A listing of helptags with the versions they became available or were removed. |'shelltype'| + Neovim: +v0.8.0 Vim: +v7.0001 |'shellxescape'| @@ -4558,6 +4802,11 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 Vim: +v7.0001 +|'showcmdloc'| + + Neovim: +v0.9.0 + Vim: +v9.0.1061 + |'showfulltag'| Neovim: +v0.1.0 @@ -4618,6 +4867,11 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 Vim: +v7.0001 +|'sloc'| + + Neovim: +v0.9.0 + Vim: +v9.0.1061 + |'slow'| Neovim: +v0.1.0 -v0.1.1 @@ -4658,6 +4912,16 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 Vim: +v7.0001 +|'smoothscroll'| + + Neovim: +v0.10.0 + Vim: +v9.0.0640 + +|'sms'| + + Neovim: +v0.10.0 + Vim: +v9.0.0640 + |'sn'| Neovim: +v0.1.0 @@ -4728,6 +4992,11 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 Vim: +v7.0082 +|'spk'| + + Neovim: +v0.9.0 + Vim: +v9.0.0772 + |'spl'| Neovim: +v0.1.0 @@ -4738,11 +5007,20 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 Vim: +v7.0001 +|'splitkeep'| + + Neovim: +v0.9.0 + Vim: +v9.0.0647 + |'splitright'| Neovim: +v0.1.0 Vim: +v7.0001 +|'splitscroll'| + + Vim: +v9.0.0445 -v9.0.0647 + |'spo'| Neovim: +v0.5.0 @@ -4758,6 +5036,10 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 Vim: +v7.0089 +|'spsc'| + + Vim: +v9.0.0445 -v9.0.0647 + |'sr'| Neovim: +v0.1.0 @@ -4802,11 +5084,19 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 Vim: +v7.0001 +|'statuscolumn'| + + Neovim: +v0.9.0 + |'statusline'| Neovim: +v0.1.0 Vim: +v7.0001 +|'stc'| + + Neovim: +v0.9.0 + |'stl'| Neovim: +v0.1.0 @@ -4971,6 +5261,10 @@ A listing of helptags with the versions they became available or were removed. Vim: +v8.0.0210 +|'t_CF'| + + Vim: +v9.1.0030 + |'t_CS'| Neovim: +v0.1.0 -v0.2.0 @@ -5001,6 +5295,10 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 -v0.2.0 Vim: +v7.0001 +|'t_Ds'| + + Vim: +v9.0.0007 + |'t_EC'| Vim: +v8.0.1007 @@ -5194,6 +5492,10 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 -v0.2.0 Vim: +v7.0001 +|'t_RK'| + + Vim: +v9.0.0980 + |'t_RS'| Vim: +v8.0.1007 @@ -5262,6 +5564,10 @@ A listing of helptags with the versions they became available or were removed. Vim: +v8.0.1129 +|'t_Us'| + + Vim: +v9.0.0007 + |'t_VS'| Vim: +v8.0.1007 @@ -5276,6 +5582,10 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 -v0.2.0 Vim: +v7.0001 +|'t_XM'| + + Vim: +v9.0.1168 + |'t_ZH'| Neovim: +v0.1.0 -v0.2.0 @@ -5336,6 +5646,10 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 -v0.2.0 Vim: +v7.0001 +|'t_ds'| + + Vim: +v9.0.0007 + |'t_fd'| Vim: +v8.2.2375 @@ -5583,6 +5897,10 @@ A listing of helptags with the versions they became available or were removed. Vim: +v7.4.627 +|'t_xo'| + + Vim: +v9.1.0321 + |'t_xs'| Neovim: +v0.1.0 -v0.2.0 @@ -5731,6 +6049,10 @@ A listing of helptags with the versions they became available or were removed. Vim: +v8.0.0761 -v8.0.1740 +|'termsync'| + + Neovim: +v0.10.0 + |'termwinkey'| Vim: +v8.0.1740 @@ -5908,6 +6230,7 @@ A listing of helptags with the versions they became available or were removed. |'tsrfu'| Neovim: +v0.6.0 + Vim: +v8.2.4047 |'ttimeout'| @@ -6178,6 +6501,10 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 Vim: +v7.0001 +|'wbr'| + + Neovim: +v0.8.0 + |'wc'| Neovim: +v0.1.0 @@ -6202,6 +6529,10 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 -v0.1.6 Vim: +v7.0001 +|'wfb'| + + Neovim: +v0.10.0 + |'wfh'| Neovim: +v0.1.0 @@ -6286,6 +6617,10 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 Vim: +v7.0001 +|'winbar'| + + Neovim: +v0.8.0 + |'winbl'| Neovim: +v0.4.0 @@ -6303,6 +6638,11 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 Vim: +v7.0001 +|'winfixbuf'| + + Neovim: +v0.10.0 + Vim: +v9.1.0147 + |'winfixheight'| Neovim: +v0.1.0 @@ -6493,6 +6833,10 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 Vim: +v7.0001 +|++p| + + Neovim: +v0.9.0 + |+ARP| Vim: +v7.0001 @@ -6568,7 +6912,7 @@ A listing of helptags with the versions they became available or were removed. |+builtin_terms| - Vim: +v7.0001 + Vim: +v7.0001 -v9.0.0280 |+byte_offset| @@ -6859,6 +7203,10 @@ A listing of helptags with the versions they became available or were removed. Vim: +v7.0001 +|+mouse_gpm/dyn| + + Vim: +v8.2.4457 + |+mouse_jsbterm| Vim: +v7.4.306 @@ -6991,6 +7339,10 @@ A listing of helptags with the versions they became available or were removed. Vim: +v7.3 +|+python3/dyn-stable| + + Vim: +v9.0.1776 + |+quickfix| Neovim: +v0.1.0 -v0.4.0 @@ -7222,6 +7574,10 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 -v0.4.0 Vim: +v7.0001 +|+xattr| + + Vim: +v9.0.1962 + |+xfontset| Neovim: +v0.1.0 -v0.4.0 @@ -7323,6 +7679,10 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.3.0 +|--gui-dialog-file| + + Vim: +v8.2.5084 + |--headless| Neovim: +v0.2.1 @@ -7341,6 +7701,10 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 -v0.3.0 Vim: +v7.0001 +|--log| + + Vim: +v8.2.4742 + |--nofork| Vim: +v7.0001 @@ -7356,66 +7720,74 @@ A listing of helptags with the versions they became available or were removed. |--remote| - Neovim: +v0.1.0 -v0.6.0 + Neovim: +v0.7.0 -v0.6.0 Vim: +v7.0001 |--remote-expr| - Neovim: +v0.1.0 -v0.6.0 + Neovim: +v0.7.0 -v0.6.0 Vim: +v7.0001 |--remote-send| - Neovim: +v0.1.0 -v0.6.0 + Neovim: +v0.7.0 -v0.6.0 Vim: +v7.0001 |--remote-silent| - Neovim: +v0.1.0 -v0.6.0 + Neovim: +v0.7.0 -v0.6.0 Vim: +v7.0001 |--remote-tab| - Neovim: +v0.1.0 -v0.6.0 + Neovim: +v0.7.0 -v0.6.0 Vim: +v7.0221 |--remote-tab-silent| - Neovim: +v0.1.0 -v0.6.0 + Neovim: +v0.7.0 -v0.6.0 Vim: +v7.0221 |--remote-tab-wait| - Neovim: +v0.1.0 -v0.6.0 + Neovim: +v0.7.0 -v0.6.0 Vim: +v7.0221 |--remote-tab-wait-silent| - Neovim: +v0.1.0 -v0.6.0 + Neovim: +v0.7.0 -v0.6.0 Vim: +v7.0221 +|--remote-ui| + + Neovim: +v0.9.0 + |--remote-wait| - Neovim: +v0.1.0 -v0.6.0 + Neovim: +v0.7.0 -v0.6.0 Vim: +v7.0001 |--remote-wait-silent| - Neovim: +v0.1.0 -v0.6.0 + Neovim: +v0.7.0 -v0.6.0 Vim: +v7.0001 |--role| Vim: +v7.0001 +|--server| + + Neovim: +v0.7.0 + |--serverlist| - Neovim: +v0.1.0 -v0.3.0 + Neovim: +v0.7.0 -v0.3.0 Vim: +v7.0001 |--servername| - Neovim: +v0.1.0 -v0.3.0 + Neovim: +v0.7.0 -v0.3.0 Vim: +v7.0001 |--socketid| @@ -7663,6 +8035,10 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 Vim: +v7.0001 +|-ll| + + Neovim: +v0.9.0 + |-m| Neovim: +v0.1.0 @@ -8885,7 +9261,7 @@ A listing of helptags with the versions they became available or were removed. |05.3| - Neovim: +dev -v0.4.0 + Neovim: +v0.7.0 -v0.4.0 Vim: +v7.0001 |05.4| @@ -8915,7 +9291,7 @@ A listing of helptags with the versions they became available or were removed. |05.9| - Neovim: +v0.4.0 -dev + Neovim: +v0.4.0 -v0.7.0 Vim: +v8.1.0872 |06.1| @@ -8945,7 +9321,7 @@ A listing of helptags with the versions they became available or were removed. |06.6| - Neovim: +v0.1.0 + Neovim: +v0.1.0 -v0.9.0 Vim: +v7.0001 |07.1| @@ -9050,10 +9426,12 @@ A listing of helptags with the versions they became available or were removed. |0o| + Neovim: +v0.7.0 Vim: +v8.2.2324 |0x| + Neovim: +v0.7.0 Vim: +v8.2.2324 |10.1| @@ -9593,32 +9971,32 @@ A listing of helptags with the versions they became available or were removed. |41.11| Neovim: +v0.1.0 - Vim: +v7.0001 + Vim: +v8.2.5073 -v8.2.4954 |41.12| Neovim: +v0.1.0 - Vim: +v7.0001 + Vim: +v8.2.5073 -v8.2.4954 |41.13| Neovim: +v0.1.0 - Vim: +v7.0049 + Vim: +v7.0049 -v8.2.4954 |41.14| Neovim: +v0.1.0 - Vim: +v7.0052 + Vim: +v7.0052 -v8.2.4954 |41.15| Neovim: +v0.1.0 - Vim: +v7.0052 + Vim: +v7.0052 -v8.2.4954 |41.16| Neovim: +v0.1.0 - Vim: +v7.0231 + Vim: +v7.0231 -v8.2.4954 |41.2| @@ -9782,19 +10160,79 @@ A listing of helptags with the versions they became available or were removed. |46.1| - Vim: +v8.2.0980 + Vim: +v8.2.0980 -v8.2.4954 |46.2| - Vim: +v8.2.0980 + Vim: +v8.2.0980 -v8.2.4954 |46.3| - Vim: +v8.2.0980 + Vim: +v8.2.0980 -v8.2.4954 |46.?| - Vim: +v8.2.0980 + Vim: +v8.2.0980 -v8.2.4954 + +|50.1| + + Vim: +v8.2.4954 + +|50.2| + + Vim: +v8.2.5055 + +|50.3| + + Vim: +v8.2.5073 + +|51.1| + + Vim: +v8.2.4954 + +|51.2| + + Vim: +v8.2.4954 + +|51.3| + + Vim: +v8.2.4954 + +|51.4| + + Vim: +v8.2.4954 + +|51.5| + + Vim: +v8.2.4954 -v8.2.5055 + +|51.6| + + Vim: +v8.2.4954 -v8.2.5055 + +|52.1| + + Vim: +v8.2.4954 + +|52.2| + + Vim: +v8.2.4954 + +|52.3| + + Vim: +v8.2.4954 + +|52.4| + + Vim: +v8.2.4954 + +|52.5| + + Vim: +v8.2.5055 + +|52.6| + + Vim: +v9.1.0455 |755| @@ -10031,6 +10469,11 @@ A listing of helptags with the versions they became available or were removed. Neovim: +v0.1.0 Vim: +v7.0001 +|: