Sander van Harmelen

Results 101 comments of Sander van Harmelen

I tested and debugged things a bit more and found this code in my `init.nvim` to be the problem: ``` function! s:ShowFilename() let s:node_info = CocAction('runCommand', 'explorer.getNodeInfo', 0) redraw |...

Still a bit funny through, that `explorer.getNodeInfo` _only_ freezes when there isn't a node (file) to fetch but only directories which it doesn't seem to fetch. Is that expected and...

I used to have something like this when I used NERDTree (now tweaked for CoC Explorer): ``` function! s:ShowFilename() redraw | echohl Debug | \ echom match(getline('.'), '\[FILE\]') < 0...

Works like a charm: ``` function! s:ShowFilename() let s:node_info = CocAction('runCommand', 'explorer.getNodeInfo', 0) redraw | echohl Debug | echom exists('s:node_info.fullpath') ? \ 'CoC Explorer: ' . s:node_info.fullpath : '' |...

I would love this as well... Is there any (custom) solution out there that will enable this behavior? Thanks!

Rebased to fix the merge conflicts...

@annawinkler done... Noticed the integration tests failed, but its because of a missing token so don't think it's related to the changed in the PR 🤷🏻‍♂️

Thanks for the ping!

Just FYI, we too sometimes see these broken pipe errors in our logs, but didn't have a change to take a closer look yet...