Mercurial > vim
view ci/if_ver-cmd.vim @ 30980:eb51299c4bfc v9.0.0825
patch 9.0.0825: cannot drag an entry in the tabpage line
Commit: https://github.com/vim/vim/commit/8e0ccb6bc21a446e5c6375b7fdf200fb53a129da
Author: zeertzjq <zeertzjq@outlook.com>
Date: Tue Nov 1 18:35:27 2022 +0000
patch 9.0.0825: cannot drag an entry in the tabpage line
Problem: Cannot drag an entry in the tabpage line.
Solution: Clear dragwin instead of got_click. (closes https://github.com/vim/vim/issues/11483,
closes #11482)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 02 Nov 2022 11:18:55 +0100 |
parents | 27ff44268da5 |
children |
line wrap: on
line source
" Provide 'PrintVer' command to print the interface versions. func s:print_ver(lang, ...) if has(a:lang) exec a:lang join(a:000) else echo 'N/A' endif echo '' endfunc command -nargs=+ PrintVer call <SID>print_ver(<f-args>)