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".
44 lines
1.3 KiB
EmacsLisp
44 lines
1.3 KiB
EmacsLisp
;;; extensions.el --- Windows Scripts Layer extensions File for Spacemacs
|
|
;;
|
|
;; Copyright (c) 2012-2014 Sylvain Benner
|
|
;; Copyright (c) 2014-2015 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
|
|
|
|
;; Post extensions are loaded *after* the packages
|
|
(setq windows-scripts-post-extensions '(dos))
|
|
|
|
;; Initialize the extensions
|
|
|
|
(defun windows-scripts/init-dos ()
|
|
(use-package dos
|
|
:commands dos-mode
|
|
:mode ("\\.bat$" . dos-mode)
|
|
:init
|
|
(progn
|
|
(defun windows-scripts/dos-outline-hook ()
|
|
(defun outline-mouse-select ()
|
|
"Select position and return to `dos-mode'."
|
|
(interactive)
|
|
(dos-mode)
|
|
(beginning-of-line)))
|
|
(defun windows-scripts/dos-outline ()
|
|
"Set a local binding to be able to return easily in dos-mode."
|
|
(interactive)
|
|
(dos-outline)
|
|
(define-key evil-normal-state-local-map (kbd "SPC m z") 'dos-mode))
|
|
(add-hook 'outline-mode-hook 'windows-scripts/dos-outline-hook))
|
|
:config
|
|
(evil-leader/set-key-for-mode 'dos-mode
|
|
"mhD" 'dos-help-cmd
|
|
"meb" 'dos-run
|
|
"meB" 'dos-run-args
|
|
"ms" 'dos-sep
|
|
"mt" 'dos-template-mini
|
|
"mT" 'dos-template
|
|
"mz" 'windows-scripts/dos-outline)))
|