43bf85c685
Make doc more clearly describe which tools belong to which backend. Change keybindings to be consistent with spacemacs conventions. Simplify LSP layer code.
15 lines
399 B
EmacsLisp
15 lines
399 B
EmacsLisp
;;; funcs.el --- PHP 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
|
|
|
|
(defun spacemacs//php-setup-backend ()
|
|
"Conditionally setup php backend."
|
|
(pcase php-backend
|
|
(`lsp (lsp))))
|