vim9script # Open Vim help on {subject} in the current window (rather than a new split) # # Maintainer: The Vim Project # Last change: 2026 Jan 29 import autoload '../autoload/helpcurwin.vim' command -bar -nargs=? -complete=help HelpCurwin helpcurwin.Open() nnoremap HelpCurwin; helpcurwin.Open(expand('')) # vim: ts=8 sts=2 sw=2 et