6eab954afe
Helm seems to treat "!" specially in pattern matching, so having a ! in the pattern string when traversing directories is problematic. This change fixes #2737, because as far as I can tell "+" has no special meaning in a helm pattern. Of course, we can choose a different character, but I'm fond of "+" as representing "more layers here".
42 lines
1.1 KiB
EmacsLisp
42 lines
1.1 KiB
EmacsLisp
;;; packages.el --- Purescript Layer packages File for Spacemacs
|
|
;;
|
|
;; Copyright (c) 2012-2014 Sylvain Benner
|
|
;; Copyright (c) 2015 Ryan L. Bell & Contributors
|
|
;;
|
|
;; Author: Ryan L. Bell
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
;;
|
|
;; This file is not part of GNU Emacs.
|
|
;;
|
|
;;; License: GPLv3
|
|
|
|
|
|
(setq purescript-packages
|
|
'(
|
|
purescript-mode
|
|
psci
|
|
))
|
|
|
|
(defun purescript/init-purescript-mode ()
|
|
(use-package purescript-mode
|
|
:defer t
|
|
:init
|
|
(progn
|
|
(add-hook 'purescript-mode-hook 'turn-on-purescript-indentation)
|
|
(evil-leader/set-key-for-mode 'purescript-mode
|
|
"mi=" 'purescript-mode-format-imports
|
|
"mi`" 'purescript-navigate-imports-return
|
|
"mia" 'purescript-align-imports
|
|
"min" 'purescript-navigate-imports))))
|
|
|
|
(defun purescript/init-psci ()
|
|
(use-package psci
|
|
:defer t
|
|
:init
|
|
(progn
|
|
(add-hook 'purescript-mode-hook 'inferior-psci-mode)
|
|
(evil-leader/set-key-for-mode 'purescript-mode
|
|
"msb" 'psci/load-current-file!
|
|
"msi" 'psci
|
|
"msm" 'psci/load-module!
|
|
"msp" 'psci/load-project-modules!))))
|