ffccb17426
I have: - Revised the documentation to be more clear about the possible backends - Simplified the lsp setup code - Removed redundant loading of company-lsp (is done by lsp-mode already) - Made lsp the default backend for dart and mentioned that the analyser is deprecated
18 lines
409 B
EmacsLisp
18 lines
409 B
EmacsLisp
;;; funcs.el --- Dart Layer functions File for Spacemacs
|
||
;;
|
||
;; Copyright (c) 2012-2018 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
|
||
|
||
|
||
;; backend
|
||
|
||
(defun spacemacs//dart-setup-backend ()
|
||
(pcase dart-backend
|
||
(`analyzer (dart-server))
|
||
(`lsp (lsp))))
|