spacemacs/layers/+lang/csharp/packages.el
syl20bnr 74fdbb6795 Refactor and simplify company backends declaration
Enabling a company backend for a specific mode was a tedious tasks with code
scattered at different locations, one for local variable definitions, one for
company hook function definitions and another where the backends were pushed to
the local variables (which was problematic, since we ended up pushing the same
backends over and over again with `SPC f e R`, pushes have been replaced by
add-to-list calls in the new macro).

All these steps are now put together at one place with the new macro
spacemacs|add-company-backends, check its docstring for more info on its
arguments.

This macro also allows to define arbitrary buffer local variables to tune
company for specific modes (similar to layer variables via a keyword :variables)

The code related to company backends management has been moved to the
auto-completion layer in the funcs.el file. A nice side effect of this move is
that it enforces correct encapsulation of company backends related code. We can
now easily detect if there is some configuration leakage when the
auto-completion layer is not used. But we loose macro expansion at file loading
time (not sue it is a big concern though).

The function spacemacs|enable-auto-complete was never used so it has been
deleted which led to the deletion of the now empty file core-auto-completion.el.

The example in LAYERS.org regarding auto-completion is now out of date and has
been deleted. An example to setup auto-completion is provided in the README.org
file of the auto-completion layer.
2017-01-02 00:39:04 -05:00

113 lines
4.3 KiB
EmacsLisp

;;; packages.el --- csharp Layer packages File for Spacemacs
;;
;; Copyright (c) 2012-2016 Sylvain Benner & Contributors
;;
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(setq csharp-packages
'(
company
csharp-mode
evil-matchit
ggtags
helm-gtags
omnisharp
))
(defun csharp/init-omnisharp ()
;; Load omnisharp-mode with csharp-mode,
;; this should start the omnisharp server automatically
(add-hook 'csharp-mode-hook 'omnisharp-mode)
(use-package omnisharp
:defer t
:init
(progn
(when (configuration-layer/package-usedp 'company)
;; needed to avoid an error when fetching doc using company
;; Note: if you are using a roslyn based omnisharp server you can
;; set back this variable to t.
(setq omnisharp-auto-complete-want-documentation nil))
(add-to-list 'spacemacs-jump-handlers-csharp-mode
'omnisharp-go-to-definition))
:config
(progn
(spacemacs/declare-prefix-for-mode 'csharp-mode "mc" "csharp/compile")
(spacemacs/declare-prefix-for-mode 'csharp-mode "mf" "csharp/file")
(spacemacs/declare-prefix-for-mode 'csharp-mode "mg" "csharp/navigation")
(spacemacs/declare-prefix-for-mode 'csharp-mode "mh"
"csharp/documentation")
(spacemacs/declare-prefix-for-mode 'csharp-mode "mr" "csharp/refactoring")
(spacemacs/declare-prefix-for-mode 'csharp-mode "ms" "csharp/server")
(spacemacs/declare-prefix-for-mode 'csharp-mode "mt" "csharp/tests")
(spacemacs/set-leader-keys-for-major-mode 'csharp-mode
;; Compile
;; Only one compile command so use top-level
"cc" 'omnisharp-build-in-emacs
;; Solution/project manipulation
"fa" 'omnisharp-add-to-solution-current-file
"fA" 'omnisharp-add-to-solution-dired-selected-files
"fr" 'omnisharp-remove-from-project-current-file
"fR" 'omnisharp-remove-from-project-dired-selected-files
"pl" 'omnisharp-add-reference
;; Navigation
"gG" 'omnisharp-go-to-definition-other-window
"gu" 'omnisharp-helm-find-usages
"gU" 'omnisharp-find-usages-with-ido
"gs" 'omnisharp-helm-find-symbols
"gi" 'omnisharp-find-implementations
"gI" 'omnisharp-find-implementations-with-ido
"gr" 'omnisharp-navigate-to-region
"gm" 'omnisharp-navigate-to-solution-member
"gM" 'omnisharp-navigate-to-solution-member-other-window
"gf" 'omnisharp-navigate-to-solution-file
"gF" 'omnisharp-navigate-to-solution-file-then-file-member
"gc" 'omnisharp-navigate-to-current-file-member
;; Help, documentation, info
"ht" 'omnisharp-current-type-information
"hT" 'omnisharp-current-type-information-to-kill-ring
;; Refactoring
"rm" 'omnisharp-rename
"rM" 'omnisharp-rename-interactively
"rr" 'omnisharp-run-code-action-refactoring
;; Server manipulation, inspired spacemacs REPL bindings since C# does
;; not provice a REPL
"ss" 'omnisharp-start-omnisharp-server
"sS" 'omnisharp-stop-server
"sr" 'omnisharp-reload-solution
;; Tests
"ta" 'omnisharp-unit-test-all
"tb" 'omnisharp-unit-test-fixture
"tt" 'omnisharp-unit-test-single
;; Code manipulation
"u" 'omnisharp-auto-complete-overrides
"i" 'omnisharp-fix-usings
"=" 'omnisharp-code-format))))
(defun csharp/post-init-company ()
(when (configuration-layer/package-usedp 'omnisharp)
(spacemacs|add-company-backends
:backends company-omnisharp
:modes csharp-mode)))
(defun csharp/init-csharp-mode ()
(use-package csharp-mode
:defer t))
(defun csharp/post-init-evil-matchit ()
(with-eval-after-load 'evil-matchit
(plist-put evilmi-plugins 'csharp-mode
'((evilmi-simple-get-tag evilmi-simple-jump)
(evilmi-c-get-tag evilmi-c-jump))))
(add-hook 'csharp-mode-hook 'turn-on-evil-matchit-mode))
(defun csharp/post-init-ggtags ()
(add-hook 'csharp-mode-local-vars-hook #'spacemacs/ggtags-mode-enable))
(defun csharp/post-init-helm-gtags ()
(spacemacs/helm-gtags-define-keys-for-mode 'csharp-mode))