spacemacs/layers/+lang/lua/funcs.el
Maximilian Wolff 39c42da792
Revise lua layer
Improve documentation to be clear about the choices of backends.
Remove obsolete functions.
Make sure that company-lua is only loaded when the right backend is used.
Make keybindings conform to conventions.
2019-12-01 00:39:37 +01:00

76 lines
2.2 KiB
EmacsLisp
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

;;; funcs.el --- Lua Layer functions File for Spacemacs
;;
;; Copyright (c) 2012-2019 Sylvain Benner & Contributors
;;
;; Author: Lin Sun <sunlin7@yahoo.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
(defun spacemacs//lua-setup-backend ()
"Conditionally setup lua backend."
(setq lua-indent-level 2
lua-indent-string-contents t)
(spacemacs/declare-prefix-for-mode 'lua-mode "mh" "help")
(spacemacs/declare-prefix-for-mode 'lua-mode "ms" "REPL")
(spacemacs/declare-prefix-for-mode 'lua-mode "mg" "goto")
(spacemacs/set-leader-keys-for-major-mode 'lua-mode
"hd" 'lua-search-documentation
"sb" 'lua-send-buffer
"sf" 'lua-send-defun
"sl" 'lua-send-current-line
"sr" 'lua-send-region
"'" 'lua-show-process-buffer)
(pcase lua-backend
(`lsp-emmy (spacemacs//lua-setup-lsp-emmy))))
(defun spacemacs//lua-setup-company ()
"Conditionally setup company based on backend."
(pcase lua-backend
(`lsp-emmy (spacemacs//lua-setup-lsp-company))
(_ (spacemacs//lua-setup-company-lua))))
(defun spacemacs//lua-setup-flycheck ()
"Conditionally setup flycheck based on backend."
(pcase lua-backend
(`lsp-emmy (spacemacs//lua-setup-lsp-flycheck))))
;; LSP Lua
(defun spacemacs//lua-setup-lsp-emmy ()
"Setup LSP Lua."
(require 'lsp-clients)
(when lua-lsp-emmy-java-path
(setq lsp-clients-emmy-lua-java-path lua-lsp-emmy-java-path))
(when lua-lsp-emmy-jar-path
(setq lsp-clients-emmy-lua-jar-path (expand-file-name lua-lsp-emmy-jar-path)))
(setq lsp-enable-file-watchers lua-lsp-emmy-enable-file-watchers)
(lsp))
(defun spacemacs//lua-setup-lsp-company ()
"Setup lsp auto-completion."
(spacemacs|add-company-backends
:backends company-lsp
:modes lua-mode
:append-hooks nil
:call-hooks t)
;; TODO: disable the cache
;; (add-to-list 'company-lsp-filter-candidates '(emmy-lua . t))
(company-mode))
(defun spacemacs//lua-setup-lsp-flycheck ()
"Setup LSP Lua syntax checking."
(when (spacemacs/enable-flycheck 'lua-mode)
(lsp-ui-flycheck-enable nil)
(flycheck-mode)))
;; Lua mode
(defun spacemacs//lua-setup-company-lua ()
(spacemacs|add-company-backends
:backends company-lua
:modes lua-mode)
(company-mode))