Search code examples
emacsomnisharp

Omnisharp on emacs speed


I am running Omnisharp on emacs on a mac. Everything works fine and wonderfully. The only problem is that speed seems to be an issue. Not for intellisense but when moving up and down in lines. (Basic C-n, C-p)

I think it's the suggestions you get on the status bar that slow everything down. They seem to stop my cursor from moving freely so it becomes annoying. Is this async?

Can you disable these status suggestions?


Solution

  • This will probably be the Eldoc support, which is indeed not entirely asynchronous yet.

    To disable it you can either: - Turn it off via 'customize' but running 'customize-group','omnisharp', searching for Eldoc and setting it to off. - Turn it off in Lisp via '(setq omnisharp-eldoc-support nil)'