Fork me on GitHub
#vim
<
2018-11-15
>
schmee07:11:02

no, I’m running the Macvim app, but vim and neovim in the terminal

juhoteperi11:11:17

I'm not using OS X but I remember that the built in terminal app is super slow. Maybe iTerm2 is a bit better. For Linux I use https://github.com/jwilm/alacritty

schmee11:11:25

I tried it both in iTerm2 and Kitty, same problem in both 😕

schmee11:11:58

I think it might just be that Macvim does it’s own rendering that is completely separate from regular vim, which happens to do a better job in this scenario

eraserhd17:11:19

@snoe Am I doing something wrong to not get references to a symbol from test/, just src/ ?

snoe18:11:28

@eraserhd no, looks like it's undocumented. In my project root I create .lsp/settings.json with this content.

{
  "initializationOptions": {"source-paths": ["shared-src", "src", "test", "dashboard/src"]}
}

snoe18:11:06

and with languageClient plugin I do let g:LanguageClient_settingsPath=".lsp/settings.json" in my init.vim

snoe18:11:05

that being said maybe I should just include test/ with src/ as the defaults

eraserhd18:11:54

That would be nice. 🙂 But I can track down how to set that in Kakoune now.

lwhorton23:11:23

heya folks. has anyone figured out a way to send forms from vim -> fireplace -> running nREPL?

lwhorton23:11:55

quite often i find myself switching back/forth between vim and a repl on the side, and it would be great to have the ability to select a form and say “send this to nrepl so i can play with it”

schmee23:11:41

is it an option to use neovim or for regular vim only?