LeaderF icon indicating copy to clipboard operation
LeaderF copied to clipboard

bug反馈:Leaderf help查询结果的相关快捷键错误

Open VimWei opened this issue 6 years ago • 1 comments

  • vim or neovim?
    • [x] vim
    • [ ] neovim
  • Output of vim --version or nvim --version: vim 8.1 (2018 May 18) MS-windows 32位图形界面版本,带OLE支持 包含补丁1 巨型版本
  • Output of :echo has("python"): 0
  • Output of :echo has("python3"): 1
  • Output of :echo &pythondll(only vim, not neovim): python27.dll
  • Output of :echo &pythonthreedll(only vim, not neovim): python36.dll
  • Output of :py print(sys.version): 此命令不可用
  • Output of :py3 print(sys.version): 3.6.6 [MSC v.1900 32 bit (Intel)]
  • Output of :echo g:Lf_Debug_Cmd: nothing
  • Output of :echo g:Lf_FilesFromCache: 1
  • Operating system:
    • [ ] Linux
    • [ ] Mac OS X
    • [x] Windows
    • [ ] Etc.
  • Configurations related to LeaderF in vimrc: Plug 'Yggdroot/LeaderF', { 'do': '.\install.bat' }

Describe your question, feature request, or bug.

Leaderf help查询结果面板的相关快捷键错误

相关:Leader rg / file 等正常。

Steps to reproduce

  1. :Leaderf help
  2. Tab
  3. t 或x或v

Actual behaviour

x:正常打开split window,但是当继续:q退出时,它并没有正常退出,而是出现了原始window的复制品。 v:正常vsplit打开,但是多了一个原始window的复制品在右下。 t:出现了正常情形下x的行为。

Expected behaviour

" x : open file under cursor in a horizontally split window " v : open file under cursor in a vertically split window " t : open file under cursor in a new tabpage

VimWei avatar Nov 12 '19 02:11 VimWei

neovim也有问题,配置:

call plug#begin('xxx')
    Plug 'Yggdroot/LeaderF', { 'do': './install.sh' }
call plug#end()

复现:

:LeaderfHelp
<c-x> / <c-]> / <c-t>

这几个打开的结果都不对

qianlei90 avatar Dec 20 '19 02:12 qianlei90