b68b44a1b1
Company tern is not longer on melpa and had to be removed. See #13725 for details.
18 lines
505 B
EmacsLisp
18 lines
505 B
EmacsLisp
;;; funcs.el --- Tern Layer functions File for Spacemacs
|
|
;;
|
|
;; Copyright (c) 2012-2020 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/tern-setup-tern ()
|
|
"Setup tern backend.
|
|
Must be called by a layer using tern."
|
|
(require 'tern)
|
|
(when tern-disable-port-files
|
|
(add-to-list 'tern-command "--no-port-file" 'append))
|
|
(tern-mode))
|