You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 1, 2020. It is now read-only.
If I try using :FlowJumpToDef on an name that is eventually not found, it sometimes takes on the order of 2 min or more to fail. This is confusing because I thought there was a timeout. Anyone else experience this issue?
I am using Neovim 0.1.7
Relavant .vimrc
"" Vim-flow
let g:flow#enable = 0
if len(exepath(s:flow_path)) > 0
let g:flow#flowpath = s:flow_path
endif
nmap <localleader>] :FlowJumpToDef<CR>
The text was updated successfully, but these errors were encountered:
I experienced a similar issue. In my case, the problem was the plugin using the global flow-bin, which started a new server every time I called :FlowJumpToDef. #24 fixed the problem for me.
Hm interesting I have it set up to use local flow also but I still experience the issue. But I have seen that behavior before as well when using a global flow installation. Thanks.
If I try using
:FlowJumpToDef
on an name that is eventually not found, it sometimes takes on the order of 2 min or more to fail. This is confusing because I thought there was a timeout. Anyone else experience this issue?I am using Neovim 0.1.7
Relavant
.vimrc
The text was updated successfully, but these errors were encountered: