Fork me on GitHub
#vim
<
2019-06-01
>
dominicm06:06:56

@lockdown- I have written a ascii to vim echo converter, but never contributed it upstream.

dominicm06:06:12

I guess I'm saying not out of the box :)

Chase14:06:28

I was able to get clojure-lsp working with those instructions from @alee, thank you! Had to screenshot those instructions cuz of slack things. Now how do I tweak this or selectively turn it off?

Chase14:06:06

Like in my practice or utils scratch files I'm getting a ton of Unused declarations on all my functions and such.

Chase14:06:07

and go to definitions works with coc.nvim's floating windows!

dave16:06:57

You can use :CocEnable and :CocDisable to turn coc on and off

Chase16:06:38

nice. On that note, I've been curious if I can use one shortcut command (like <leader>c) to toggle between :CocEnable and :CocDisable instead of using two shortcut commands (one to enable, one to disable)? Is that possible?

dominicm17:06:10

If you can detect whether it is enabled, yes :)

dave18:06:56

I did something like that. The only way I could find to detect whether it's enabled is a bit hacky, but seems to work OK-ish

Chase18:06:18

awesome, works exactly as intended with clojure at least. thank you!

dave19:06:41

No prob!