2015-12-02 14:23:39 +00:00
|
|
|
#+TITLE: C# layer
|
2015-06-10 16:44:30 +00:00
|
|
|
|
2019-05-07 08:53:56 +00:00
|
|
|
#+TAGS: general|layer|multi-paradigm|programming
|
2019-05-05 17:26:40 +00:00
|
|
|
|
2017-08-20 17:45:49 +00:00
|
|
|
[[file:img/csharp.png]]
|
2015-06-10 16:44:30 +00:00
|
|
|
|
2019-05-07 20:05:06 +00:00
|
|
|
* Table of Contents :TOC_5_gh:noexport:
|
2017-05-22 14:16:12 +00:00
|
|
|
- [[#description][Description]]
|
2017-08-20 17:45:49 +00:00
|
|
|
- [[#features][Features:]]
|
2019-11-23 10:43:56 +00:00
|
|
|
- [[#backends][Backends]]
|
2017-05-22 14:16:12 +00:00
|
|
|
- [[#install][Install]]
|
2019-11-23 10:43:56 +00:00
|
|
|
- [[#omnisharp-backend][Omnisharp backend]]
|
2017-05-22 14:16:12 +00:00
|
|
|
- [[#caveats][Caveats]]
|
2019-11-23 10:43:56 +00:00
|
|
|
- [[#key-bindings-for-the-omnisharp-backend][Key bindings for the omnisharp backend]]
|
2017-05-22 14:16:12 +00:00
|
|
|
- [[#navigation][Navigation]]
|
|
|
|
- [[#helpers-documentation-info][Helpers (documentation, info)]]
|
|
|
|
- [[#refactoring][Refactoring]]
|
|
|
|
- [[#omnisharp-server-interaction][OmniSharp server interaction]]
|
2018-10-21 07:59:47 +00:00
|
|
|
- [[#tests][Tests]]
|
2015-06-10 16:44:30 +00:00
|
|
|
|
|
|
|
* Description
|
2019-11-23 10:43:56 +00:00
|
|
|
This layer adds support for the C# language using the [[https://github.com/OmniSharp/omnisharp-roslyn][omnisharp-roslyn]]
|
|
|
|
language server with either the [[https://github.com/OmniSharp/omnisharp-emacs][omnisharp-emacs]]
|
|
|
|
or the [[https://github.com/emacs-lsp/lsp-mode][lsp-mode]] packages.
|
2017-08-20 17:45:49 +00:00
|
|
|
|
|
|
|
** Features:
|
2017-08-28 01:44:46 +00:00
|
|
|
- Syntax checking with flycheck (when =syntax-checking= layer is used)
|
|
|
|
- Support for auto-completion (when =auto-completion= layer is used)
|
2017-08-20 17:45:49 +00:00
|
|
|
- Refactoring
|
|
|
|
- Navigation to cross-references
|
|
|
|
- Inspecting types in metadata
|
2015-06-10 16:44:30 +00:00
|
|
|
|
2019-11-23 10:43:56 +00:00
|
|
|
* Backends
|
|
|
|
There are two backends available for this layer, one based on the =omnisharp-emacs=
|
|
|
|
package and a new one based on =lsp-mode= (language server protocol) package.
|
|
|
|
|
|
|
|
Both backends use the omnisharp-roslyn server under the hood however different
|
|
|
|
features are available. The =omnisharp= backend might be more stable at this
|
|
|
|
moment (late 2019).
|
2016-04-13 03:31:38 +00:00
|
|
|
|
2015-06-10 16:44:30 +00:00
|
|
|
* Install
|
2016-01-06 05:21:55 +00:00
|
|
|
To use this configuration layer, add it to your =~/.spacemacs=. You will need to
|
|
|
|
add =csharp= to the existing =dotspacemacs-configuration-layers= list in this
|
|
|
|
file.
|
2015-06-10 16:44:30 +00:00
|
|
|
|
2019-11-23 10:43:56 +00:00
|
|
|
You can also choose between one of the two available backends by setting
|
|
|
|
the =csharp-backend= variable when configuring the layer:
|
2019-12-15 20:56:12 +00:00
|
|
|
- =omnisharp= (the default), or
|
|
|
|
- =lsp= (testing)
|
|
|
|
- =nil= (to not use any language server)
|
2019-11-23 10:43:56 +00:00
|
|
|
|
|
|
|
To use the lsp backend, add `csharp' layer with =csharp-backend= variable set to 'lsp:
|
2019-12-15 20:56:12 +00:00
|
|
|
|
2019-11-23 10:43:56 +00:00
|
|
|
#+BEGIN_SRC elisp
|
|
|
|
(csharp :variables csharp-backend 'lsp)
|
|
|
|
#+END_SRC
|
|
|
|
|
|
|
|
** Omnisharp backend
|
2017-08-20 17:45:49 +00:00
|
|
|
Before you can work with C# files you will need to install the server by invoking
|
2019-11-23 10:43:56 +00:00
|
|
|
~SPC m s i~ (or =M-x omnisharp-install-server=). Otherwise, if this fails for you, please see
|
|
|
|
[[https://github.com/OmniSharp/omnisharp-emacs/blob/master/doc/server-installation.md][omnisharp-emacs/doc/server-installation.md]].
|
2015-06-10 16:44:30 +00:00
|
|
|
|
2019-11-23 10:43:56 +00:00
|
|
|
While the server will start automatically it may still be required for you to start
|
|
|
|
it manually using ~SPC m s s~ (or =M-x omnisharp-start-omnisharp-server=). It will
|
|
|
|
prompt a path to your .csproj or .sln file.
|
2015-06-10 16:44:30 +00:00
|
|
|
|
|
|
|
* Caveats
|
2017-08-20 17:45:49 +00:00
|
|
|
- You should use =dotnet= CLI tool from [[https://www.microsoft.com/net/download/core][.NET Core download page]] or an IDE like
|
|
|
|
Visual Studio or Xamarin Studio to manage solution and project files.
|
|
|
|
- Debugging on command line is possible using [[https://github.com/mono/sdb][SDB]].
|
2019-11-23 10:43:56 +00:00
|
|
|
- There can be *only one server* running at the same time using the =omnisharp= backend.
|
|
|
|
To switch to a different solution/project you need to invoke ~SPC m s S~ and ~SPC m s s~ to stop
|
2017-08-28 01:44:46 +00:00
|
|
|
current server and start another one pointing to another solution/project.
|
2019-11-23 10:43:56 +00:00
|
|
|
- LSP backend supports multiple concurrent language servers/projects loaded.
|
|
|
|
|
|
|
|
* Key bindings for the omnisharp backend
|
|
|
|
The following key bindings are available when using the =omnisharp= backend.
|
2019-12-15 20:56:12 +00:00
|
|
|
LSP-backend uses key bindings that are common for all layers/languages using the =lsp= layer.
|
2015-06-10 16:44:30 +00:00
|
|
|
|
|
|
|
** Navigation
|
|
|
|
|
2018-12-05 03:03:03 +00:00
|
|
|
| Key binding | Description |
|
2015-06-10 16:44:30 +00:00
|
|
|
|-------------+-----------------------------------------------|
|
2017-08-28 01:44:46 +00:00
|
|
|
| ~SPC m g c~ | Go to member in current file |
|
2018-01-10 04:26:08 +00:00
|
|
|
| ~SPC m g e~ | List errors and warnings in solution |
|
2015-06-12 01:23:07 +00:00
|
|
|
| ~SPC m g f~ | Go to solution file |
|
|
|
|
| ~SPC m g F~ | Go to solution file then member |
|
|
|
|
| ~SPC m g g~ | Go to definition |
|
|
|
|
| ~SPC m g G~ | Go to definition in other window |
|
|
|
|
| ~SPC m g i~ | Find implementations |
|
2015-09-25 11:04:27 +00:00
|
|
|
| ~SPC m g I~ | Find implementations using ido |
|
2015-06-12 01:23:07 +00:00
|
|
|
| ~SPC m g m~ | Go to solution member |
|
|
|
|
| ~SPC m g M~ | Go to solution member in other window |
|
|
|
|
| ~SPC m g r~ | Go to region |
|
|
|
|
| ~SPC m g s~ | Find symbols using Helm |
|
|
|
|
| ~SPC m g u~ | Find usages of symbol under cursor using Helm |
|
2015-09-25 11:04:27 +00:00
|
|
|
| ~SPC m g U~ | Find usages of symbol under cursor using ido |
|
2015-06-10 16:44:30 +00:00
|
|
|
|
|
|
|
** Helpers (documentation, info)
|
|
|
|
|
2018-12-05 03:03:03 +00:00
|
|
|
| Key binding | Description |
|
2015-06-10 16:44:30 +00:00
|
|
|
|-------------+------------------------------------------------------------------------|
|
2015-06-12 01:23:07 +00:00
|
|
|
| ~SPC m h t~ | Get type information for symbol under cursor |
|
|
|
|
| ~SPC m h T~ | Get type information for symbol under cursor and put it into kill-ring |
|
2015-06-10 16:44:30 +00:00
|
|
|
|
|
|
|
** Refactoring
|
|
|
|
|
2018-12-05 03:03:03 +00:00
|
|
|
| Key binding | Description |
|
2015-09-25 11:04:27 +00:00
|
|
|
|-------------+------------------------------------------|
|
|
|
|
| ~SPC m r m~ | Rename symbol under cursor |
|
2016-01-09 03:42:14 +00:00
|
|
|
| ~SPC m r M~ | Rename symbol under cursor interactively |
|
2017-08-20 17:45:49 +00:00
|
|
|
| ~SPC m r r~ | Refactor under cursor |
|
2015-06-10 16:44:30 +00:00
|
|
|
|
|
|
|
** OmniSharp server interaction
|
|
|
|
|
2018-12-05 03:03:03 +00:00
|
|
|
| Key binding | Description |
|
2015-06-10 16:44:30 +00:00
|
|
|
|-------------+----------------------------|
|
2017-08-28 01:44:46 +00:00
|
|
|
| ~SPC m s i~ | Install OmniSharp server |
|
2015-06-12 01:23:07 +00:00
|
|
|
| ~SPC m s r~ | Reload the solution |
|
|
|
|
| ~SPC m s s~ | Start the OmniSharp server |
|
|
|
|
| ~SPC m s S~ | Stop the OmniSharp server |
|
2018-10-21 07:59:47 +00:00
|
|
|
|
|
|
|
** Tests
|
|
|
|
|
2019-05-12 14:09:10 +00:00
|
|
|
| Key binding | Description |
|
|
|
|
|-------------+----------------------------------|
|
|
|
|
| ~SPC m t b~ | Run tests in current buffer |
|
|
|
|
| ~SPC m t t~ | Run the last executed test again |
|
|
|
|
| ~SPC m t t~ | Run the test around point |
|