2015-05-21 02:39:14 +00:00
|
|
|
;;; packages.el --- shell packages File for Spacemacs
|
|
|
|
;;
|
2016-01-12 02:40:54 +00:00
|
|
|
;; Copyright (c) 2012-2016 Sylvain Benner & Contributors
|
2015-05-21 02:39:14 +00:00
|
|
|
;;
|
|
|
|
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
|
|
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
|
|
;;
|
|
|
|
;; This file is not part of GNU Emacs.
|
|
|
|
;;
|
|
|
|
;;; License: GPLv3
|
|
|
|
|
|
|
|
(setq shell-packages
|
|
|
|
'(
|
2016-01-26 05:47:10 +00:00
|
|
|
(comint :location built-in)
|
2015-07-08 04:57:15 +00:00
|
|
|
company
|
2016-01-26 05:47:10 +00:00
|
|
|
esh-help
|
|
|
|
(eshell :location built-in)
|
|
|
|
eshell-prompt-extras
|
|
|
|
eshell-z
|
2015-05-21 02:39:14 +00:00
|
|
|
helm
|
2016-01-26 05:47:10 +00:00
|
|
|
magit
|
2015-05-25 02:01:26 +00:00
|
|
|
multi-term
|
2016-04-04 13:48:34 +00:00
|
|
|
org
|
2016-02-02 15:42:58 +00:00
|
|
|
projectile
|
2016-01-26 05:47:10 +00:00
|
|
|
(shell :location built-in)
|
2015-05-21 02:39:14 +00:00
|
|
|
shell-pop
|
2016-01-09 02:27:26 +00:00
|
|
|
smooth-scrolling
|
2016-01-26 05:47:10 +00:00
|
|
|
(term :location built-in)
|
|
|
|
xterm-color
|
2016-04-29 21:48:00 +00:00
|
|
|
vi-tilde-fringe
|
2015-05-21 02:39:14 +00:00
|
|
|
))
|
|
|
|
|
2016-01-26 05:47:10 +00:00
|
|
|
(defun shell/init-comint ()
|
2016-02-27 23:25:33 +00:00
|
|
|
(setq comint-prompt-read-only t)
|
|
|
|
(add-hook 'comint-mode-hook 'spacemacs/disable-hl-line-mode))
|
2016-01-26 05:47:10 +00:00
|
|
|
|
2015-07-24 02:21:51 +00:00
|
|
|
(defun shell/pre-init-company ()
|
2015-07-08 04:57:15 +00:00
|
|
|
;; support in eshell
|
|
|
|
(spacemacs|use-package-add-hook eshell
|
2015-09-14 13:09:28 +00:00
|
|
|
:post-init
|
|
|
|
(progn
|
|
|
|
(push 'company-capf company-backends-eshell-mode)
|
|
|
|
(spacemacs|add-company-hook eshell-mode))
|
2015-05-21 02:39:14 +00:00
|
|
|
:post-config
|
|
|
|
(progn
|
2015-07-10 09:51:40 +00:00
|
|
|
(defun spacemacs//toggle-shell-auto-completion-based-on-path ()
|
|
|
|
"Deactivates automatic completion on remote paths.
|
|
|
|
Retrieving completions for Eshell blocks Emacs. Over remote
|
|
|
|
connections the delay is often annoying, so it's better to let
|
|
|
|
the user activate the completion manually."
|
|
|
|
(if (file-remote-p default-directory)
|
|
|
|
(setq-local company-idle-delay nil)
|
|
|
|
(setq-local company-idle-delay 0.2)))
|
|
|
|
(add-hook 'eshell-directory-change-hook
|
|
|
|
'spacemacs//toggle-shell-auto-completion-based-on-path)
|
2015-07-08 04:57:15 +00:00
|
|
|
;; The default frontend screws everything up in short windows like
|
|
|
|
;; terminal often are
|
2015-08-11 02:12:27 +00:00
|
|
|
(defun spacemacs//eshell-switch-company-frontend ()
|
|
|
|
"Sets the company frontend to `company-preview-frontend' in e-shell mode."
|
|
|
|
(setq-local company-frontends '(company-preview-frontend)))
|
|
|
|
(add-hook 'eshell-mode-hook
|
2015-09-14 13:09:28 +00:00
|
|
|
'spacemacs//eshell-switch-company-frontend))))
|
2015-07-08 04:57:15 +00:00
|
|
|
|
2016-01-26 05:47:10 +00:00
|
|
|
(defun shell/init-esh-help ()
|
|
|
|
(use-package esh-help
|
|
|
|
:defer t
|
|
|
|
:init (add-hook 'eshell-mode-hook 'eldoc-mode)
|
|
|
|
:config (setup-esh-help-eldoc)))
|
|
|
|
|
2015-07-08 05:02:00 +00:00
|
|
|
(defun shell/init-eshell ()
|
|
|
|
(use-package eshell
|
|
|
|
:defer t
|
|
|
|
:init
|
|
|
|
(progn
|
2016-01-22 15:26:52 +00:00
|
|
|
(spacemacs/register-repl 'eshell 'eshell)
|
2015-07-08 05:02:00 +00:00
|
|
|
(setq eshell-cmpl-cycle-completions nil
|
|
|
|
;; auto truncate after 20k lines
|
|
|
|
eshell-buffer-maximum-lines 20000
|
|
|
|
;; history size
|
|
|
|
eshell-history-size 350
|
2015-12-24 03:01:00 +00:00
|
|
|
;; no duplicates in history
|
|
|
|
eshell-hist-ignoredups t
|
2015-07-08 05:02:00 +00:00
|
|
|
;; buffer shorthand -> echo foo > #'buffer
|
|
|
|
eshell-buffer-shorthand t
|
|
|
|
;; my prompt is easy enough to see
|
|
|
|
eshell-highlight-prompt nil
|
|
|
|
;; treat 'echo' like shell echo
|
2016-02-17 04:40:25 +00:00
|
|
|
eshell-plain-echo-behavior t
|
|
|
|
;; cache directory
|
|
|
|
eshell-directory-name (concat spacemacs-cache-directory "eshell/"))
|
2015-07-08 05:02:00 +00:00
|
|
|
|
|
|
|
(defun spacemacs//eshell-auto-end ()
|
|
|
|
"Move point to end of current prompt when switching to insert state."
|
|
|
|
(when (and (eq major-mode 'eshell-mode)
|
|
|
|
;; Not on last line, we might want to edit within it.
|
|
|
|
(not (eq (line-end-position) (point-max))))
|
|
|
|
(end-of-buffer)))
|
|
|
|
|
2015-07-10 23:58:13 +00:00
|
|
|
(when shell-protect-eshell-prompt
|
2015-07-26 06:41:26 +00:00
|
|
|
(defun spacemacs//protect-eshell-prompt ()
|
2015-07-10 23:58:13 +00:00
|
|
|
"Protect Eshell's prompt like Comint's prompts.
|
|
|
|
|
|
|
|
E.g. `evil-change-whole-line' won't wipe the prompt. This
|
|
|
|
is achieved by adding the relevant text properties."
|
|
|
|
(let ((inhibit-field-text-motion t))
|
|
|
|
(add-text-properties
|
|
|
|
(point-at-bol)
|
|
|
|
(point)
|
|
|
|
'(rear-nonsticky t
|
|
|
|
inhibit-line-move-field-capture t
|
|
|
|
field output
|
|
|
|
read-only t
|
|
|
|
front-sticky (field inhibit-line-move-field-capture)))))
|
2015-07-26 06:41:26 +00:00
|
|
|
(add-hook 'eshell-after-prompt-hook 'spacemacs//protect-eshell-prompt))
|
2015-07-10 23:58:13 +00:00
|
|
|
|
2015-07-08 05:02:00 +00:00
|
|
|
(defun spacemacs//init-eshell ()
|
|
|
|
"Stuff to do when enabling eshell."
|
|
|
|
(setq pcomplete-cycle-completions nil)
|
2015-11-13 10:59:01 +00:00
|
|
|
(if (bound-and-true-p linum-mode) (linum-mode -1))
|
2015-07-08 05:06:38 +00:00
|
|
|
(unless shell-enable-smart-eshell
|
|
|
|
;; we don't want auto-jump to prompt when smart eshell is enabled.
|
2016-01-27 14:15:34 +00:00
|
|
|
;; Idea: maybe we could make auto-jump smarter and jump only if
|
2015-07-08 05:06:38 +00:00
|
|
|
;; point is not on a prompt line
|
|
|
|
(add-hook 'evil-insert-state-entry-hook
|
|
|
|
'spacemacs//eshell-auto-end nil t))
|
2015-07-08 05:02:00 +00:00
|
|
|
(when (configuration-layer/package-usedp 'semantic)
|
2016-01-21 21:11:49 +00:00
|
|
|
(semantic-mode -1))
|
|
|
|
;; Caution! this will erase buffer's content at C-l
|
|
|
|
(define-key eshell-mode-map (kbd "C-l") 'eshell/clear)
|
|
|
|
(define-key eshell-mode-map (kbd "C-d") 'eshell-delchar-or-maybe-eof))
|
|
|
|
|
|
|
|
(autoload 'eshell-delchar-or-maybe-eof "em-rebind")
|
2015-12-24 03:01:00 +00:00
|
|
|
|
2016-01-26 05:47:10 +00:00
|
|
|
;; Defining a function like this makes it possible to type 'clear'
|
|
|
|
;; in eshell and have it work
|
2015-12-24 03:01:00 +00:00
|
|
|
(defun eshell/clear ()
|
|
|
|
(interactive)
|
|
|
|
(let ((inhibit-read-only t))
|
|
|
|
(erase-buffer))
|
|
|
|
(eshell-send-input))
|
|
|
|
|
2016-02-27 23:25:33 +00:00
|
|
|
(add-hook 'eshell-mode-hook 'spacemacs//init-eshell)
|
|
|
|
(add-hook 'eshell-mode-hook 'spacemacs/disable-hl-line-mode))
|
2015-07-08 05:02:00 +00:00
|
|
|
:config
|
|
|
|
(progn
|
|
|
|
(require 'esh-opt)
|
|
|
|
|
|
|
|
;; quick commands
|
2016-02-07 01:50:06 +00:00
|
|
|
(defalias 'eshell/e 'find-file-other-window)
|
|
|
|
(defalias 'eshell/d 'dired)
|
2015-07-08 05:02:00 +00:00
|
|
|
(setenv "PAGER" "cat")
|
|
|
|
|
|
|
|
;; support `em-smart'
|
|
|
|
(when shell-enable-smart-eshell
|
|
|
|
(require 'em-smart)
|
|
|
|
(setq eshell-where-to-jump 'begin
|
|
|
|
eshell-review-quick-commands nil
|
|
|
|
eshell-smart-space-goes-to-end t)
|
|
|
|
(add-hook 'eshell-mode-hook 'eshell-smart-initialize))
|
|
|
|
|
|
|
|
;; Visual commands
|
|
|
|
(require 'em-term)
|
|
|
|
(mapc (lambda (x) (push x eshell-visual-commands))
|
|
|
|
'("el" "elinks" "htop" "less" "ssh" "tmux" "top"))
|
|
|
|
|
|
|
|
;; automatically truncate buffer after output
|
|
|
|
(when (boundp 'eshell-output-filter-functions)
|
2015-11-13 11:20:55 +00:00
|
|
|
(push 'eshell-truncate-buffer eshell-output-filter-functions))
|
|
|
|
|
|
|
|
;; These don't work well in normal state
|
|
|
|
;; due to evil/emacs cursor incompatibility
|
|
|
|
(evil-define-key 'insert eshell-mode-map
|
|
|
|
(kbd "C-k") 'eshell-previous-matching-input-from-input
|
|
|
|
(kbd "C-j") 'eshell-next-matching-input-from-input))))
|
2015-07-08 05:02:00 +00:00
|
|
|
|
|
|
|
(defun shell/init-eshell-prompt-extras ()
|
|
|
|
(use-package eshell-prompt-extras
|
|
|
|
:commands epe-theme-lambda
|
|
|
|
:init
|
|
|
|
(setq eshell-highlight-prompt nil
|
|
|
|
eshell-prompt-function 'epe-theme-lambda)))
|
|
|
|
|
2016-01-26 05:47:10 +00:00
|
|
|
(defun shell/init-eshell-z ()
|
|
|
|
(use-package eshell-z
|
|
|
|
:defer t
|
|
|
|
:init
|
|
|
|
(with-eval-after-load 'eshell
|
|
|
|
(require 'eshell-z))))
|
|
|
|
|
2016-01-04 19:35:19 +00:00
|
|
|
(when (configuration-layer/layer-usedp 'spacemacs-helm)
|
|
|
|
(defun shell/pre-init-helm ()
|
|
|
|
(spacemacs|use-package-add-hook helm
|
|
|
|
:post-init
|
|
|
|
(progn
|
|
|
|
;; eshell
|
|
|
|
(defun spacemacs/helm-eshell-history ()
|
|
|
|
"Correctly revert to insert state after selection."
|
|
|
|
(interactive)
|
|
|
|
(helm-eshell-history)
|
Use evil in holy-mode
Motivation
While disabling Evil in holy-mode makes its implementation shorter and
sounds elegant on the paper, in practice it puts a big burden on the
configuration parts which need to know if Evil is enable or not. This is
a bad separation of concerns and the bunch of fixes that we were forced
to do in the past weeks shows this issue. Those fixes were about
removing the knowledge of the activation of Evil by implementing new
dispatching functions to be used by layers, this is cumbersome and makes
Spacemacs layer configuration more subtle which is not good. There was
additional bad consequences of the removal of Evil state like the
impossibility to use Evil lisp state or iedit states, or we would have
been forced to implement a temporary activation of Evil which is
awkward.
Instead I reintroduce Evil as the central piece of Spacemacs design thus
Evil is now re-enabled in holy-mode. It provides the abstraction we need
to isolate editing styles and be able to grow the Spacemacs
configuration coverage sanely. Layers don't need to check whether the
holy mode is active or not and they don't need to know if Evil is
available (it is always available). We also don't need to write
additional dispatching functions, this is the job of Evil, and I think
it provides everything for this. Ideally configuration layer should be
implemented with only Evil in mind and the holy-mode (and hybrid-mode)
should magically make it work for Emacs style users, for instance we can
freely use `evil-insert-state` anywhere in the code without any guard.
Evil is now even more part of Spacemacs, we can really say that
Spacemacs is Emacs+Evil which is now an indivisible pair. Spacemacs
needed this stable API to continue on the right track.
While these changes should be rather transparent to the user, I'm sorry
for this experimental period, I failed to see all the implications of
such a change, I was just excited about the possibility to make Evil
optional. The reality is that Spacemacs has to embrace it and keep its
strong position on being Emacs+Evil at the core.
Implementation
- insert, motion and normal states are forced to emacs state using an
advice on `evil-insert-state`, `evil-motion-state` and
`evil-normal-state` respectively. These functions can be used freely in
the layer configuration.
- A new general hook `spacemacs-editing-style-hook` allow to hook any
code that need to be configured based on the editing style. Functions
hooked to this hook takes the current style as parameter, this
basically generalize the hook used to setup hjkl navigation bindings.
- ESC has been removed from the emacs state map.
- Revert unneeded changes
- Revert "evil: enter insert-state only from normal-state"
commit bdd702dfbe302206bbc989c7a0832daba087a781.
- Revert "avoid being evil in deft with emacs editing style"
commit f3a16f49ed27cc8cf05f23f93b006d6e04235381.
Additional changes
All editing style packages have been moved to a layer called
`spacemacs-editing-styles`
Notes
I did not have time to attack hybrid mode, I should be able to do it
later.
2016-03-13 23:41:18 +00:00
|
|
|
(evil-insert-state))
|
2016-01-04 19:35:19 +00:00
|
|
|
(defun spacemacs/helm-shell-history ()
|
|
|
|
"Correctly revert to insert state after selection."
|
|
|
|
(interactive)
|
|
|
|
(helm-comint-input-ring)
|
Use evil in holy-mode
Motivation
While disabling Evil in holy-mode makes its implementation shorter and
sounds elegant on the paper, in practice it puts a big burden on the
configuration parts which need to know if Evil is enable or not. This is
a bad separation of concerns and the bunch of fixes that we were forced
to do in the past weeks shows this issue. Those fixes were about
removing the knowledge of the activation of Evil by implementing new
dispatching functions to be used by layers, this is cumbersome and makes
Spacemacs layer configuration more subtle which is not good. There was
additional bad consequences of the removal of Evil state like the
impossibility to use Evil lisp state or iedit states, or we would have
been forced to implement a temporary activation of Evil which is
awkward.
Instead I reintroduce Evil as the central piece of Spacemacs design thus
Evil is now re-enabled in holy-mode. It provides the abstraction we need
to isolate editing styles and be able to grow the Spacemacs
configuration coverage sanely. Layers don't need to check whether the
holy mode is active or not and they don't need to know if Evil is
available (it is always available). We also don't need to write
additional dispatching functions, this is the job of Evil, and I think
it provides everything for this. Ideally configuration layer should be
implemented with only Evil in mind and the holy-mode (and hybrid-mode)
should magically make it work for Emacs style users, for instance we can
freely use `evil-insert-state` anywhere in the code without any guard.
Evil is now even more part of Spacemacs, we can really say that
Spacemacs is Emacs+Evil which is now an indivisible pair. Spacemacs
needed this stable API to continue on the right track.
While these changes should be rather transparent to the user, I'm sorry
for this experimental period, I failed to see all the implications of
such a change, I was just excited about the possibility to make Evil
optional. The reality is that Spacemacs has to embrace it and keep its
strong position on being Emacs+Evil at the core.
Implementation
- insert, motion and normal states are forced to emacs state using an
advice on `evil-insert-state`, `evil-motion-state` and
`evil-normal-state` respectively. These functions can be used freely in
the layer configuration.
- A new general hook `spacemacs-editing-style-hook` allow to hook any
code that need to be configured based on the editing style. Functions
hooked to this hook takes the current style as parameter, this
basically generalize the hook used to setup hjkl navigation bindings.
- ESC has been removed from the emacs state map.
- Revert unneeded changes
- Revert "evil: enter insert-state only from normal-state"
commit bdd702dfbe302206bbc989c7a0832daba087a781.
- Revert "avoid being evil in deft with emacs editing style"
commit f3a16f49ed27cc8cf05f23f93b006d6e04235381.
Additional changes
All editing style packages have been moved to a layer called
`spacemacs-editing-styles`
Notes
I did not have time to attack hybrid mode, I should be able to do it
later.
2016-03-13 23:41:18 +00:00
|
|
|
(evil-insert-state))
|
2016-01-04 19:35:19 +00:00
|
|
|
(defun spacemacs/init-helm-eshell ()
|
|
|
|
"Initialize helm-eshell."
|
|
|
|
;; this is buggy for now
|
|
|
|
;; (define-key eshell-mode-map (kbd "<tab>") 'helm-esh-pcomplete)
|
|
|
|
(spacemacs/set-leader-keys-for-major-mode 'eshell-mode
|
|
|
|
"H" 'spacemacs/helm-eshell-history)
|
|
|
|
(define-key eshell-mode-map
|
|
|
|
(kbd "M-l") 'spacemacs/helm-eshell-history))
|
|
|
|
(add-hook 'eshell-mode-hook 'spacemacs/init-helm-eshell)
|
|
|
|
;;shell
|
|
|
|
(spacemacs/set-leader-keys-for-major-mode 'shell-mode
|
|
|
|
"H" 'spacemacs/helm-shell-history)))))
|
2015-05-25 02:01:26 +00:00
|
|
|
|
2016-01-26 05:47:10 +00:00
|
|
|
(defun shell/pre-init-magit ()
|
|
|
|
(spacemacs|use-package-add-hook magit
|
|
|
|
:post-init
|
|
|
|
(defalias 's 'magit-status)))
|
|
|
|
|
2015-05-25 02:01:26 +00:00
|
|
|
(defun shell/init-multi-term ()
|
|
|
|
(use-package multi-term
|
|
|
|
:defer t
|
|
|
|
:init
|
|
|
|
(progn
|
2016-01-22 15:26:52 +00:00
|
|
|
(spacemacs/register-repl 'multi-term 'multi-term)
|
2016-04-10 02:51:40 +00:00
|
|
|
(defun multiterm (_)
|
2015-05-25 02:01:26 +00:00
|
|
|
"Wrapper to be able to call multi-term from shell-pop"
|
|
|
|
(interactive)
|
|
|
|
(multi-term)))
|
|
|
|
:config
|
|
|
|
(progn
|
|
|
|
(defun term-send-tab ()
|
|
|
|
"Send tab in term mode."
|
|
|
|
(interactive)
|
|
|
|
(term-send-raw-string "\t"))
|
2015-05-31 22:06:35 +00:00
|
|
|
(add-to-list 'term-bind-key-alist '("<tab>" . term-send-tab))
|
2015-07-06 22:55:04 +00:00
|
|
|
;; multi-term commands to create terminals and move through them.
|
2015-11-18 00:38:05 +00:00
|
|
|
(spacemacs/set-leader-keys-for-major-mode 'term-mode "c" 'multi-term)
|
|
|
|
(spacemacs/set-leader-keys-for-major-mode 'term-mode "p" 'multi-term-prev)
|
|
|
|
(spacemacs/set-leader-keys-for-major-mode 'term-mode "n" 'multi-term-next)
|
2015-05-25 02:01:26 +00:00
|
|
|
|
2015-05-31 22:06:35 +00:00
|
|
|
(when (configuration-layer/package-usedp 'projectile)
|
|
|
|
(defun projectile-multi-term-in-root ()
|
|
|
|
"Invoke `multi-term' in the project's root."
|
|
|
|
(interactive)
|
|
|
|
(projectile-with-default-dir (projectile-project-root) (multi-term)))
|
2015-11-18 00:38:05 +00:00
|
|
|
(spacemacs/set-leader-keys "p$t" 'projectile-multi-term-in-root)))))
|
2015-05-21 02:39:14 +00:00
|
|
|
|
2016-04-04 13:48:34 +00:00
|
|
|
(defun shell/pre-init-org ()
|
|
|
|
(spacemacs|use-package-add-hook org
|
|
|
|
:post-config (add-to-list 'org-babel-load-languages '(shell . t))))
|
|
|
|
|
2016-02-02 15:42:58 +00:00
|
|
|
(defun shell/post-init-projectile ()
|
|
|
|
(spacemacs/set-leader-keys "p'" 'spacemacs/projectile-shell-pop))
|
|
|
|
|
2015-07-02 14:53:52 +00:00
|
|
|
(defun shell/init-shell ()
|
2016-01-22 15:26:52 +00:00
|
|
|
(spacemacs/register-repl 'shell 'shell)
|
2015-05-21 02:39:14 +00:00
|
|
|
(defun shell-comint-input-sender-hook ()
|
|
|
|
"Check certain shell commands.
|
|
|
|
Executes the appropriate behavior for certain commands."
|
|
|
|
(setq comint-input-sender
|
|
|
|
(lambda (proc command)
|
|
|
|
(cond
|
|
|
|
;; Check for clear command and execute it.
|
|
|
|
((string-match "^[ \t]*clear[ \t]*$" command)
|
|
|
|
(comint-send-string proc "\n")
|
|
|
|
(erase-buffer))
|
|
|
|
;; Check for man command and execute it.
|
|
|
|
((string-match "^[ \t]*man[ \t]*" command)
|
|
|
|
(comint-send-string proc "\n")
|
2016-01-26 05:47:10 +00:00
|
|
|
(setq command (replace-regexp-in-string
|
|
|
|
"^[ \t]*man[ \t]*" "" command))
|
|
|
|
(setq command (replace-regexp-in-string
|
|
|
|
"[ \t]+$" "" command))
|
2015-05-21 02:39:14 +00:00
|
|
|
(funcall 'man command))
|
|
|
|
;; Send other commands to the default handler.
|
|
|
|
(t (comint-simple-send proc command))))))
|
2016-02-27 23:25:33 +00:00
|
|
|
(add-hook 'shell-mode-hook 'shell-comint-input-sender-hook)
|
|
|
|
(add-hook 'shell-mode-hook 'spacemacs/disable-hl-line-mode))
|
2015-05-21 02:39:14 +00:00
|
|
|
|
|
|
|
(defun shell/init-shell-pop ()
|
|
|
|
(use-package shell-pop
|
|
|
|
:defer t
|
|
|
|
:init
|
|
|
|
(progn
|
|
|
|
(setq shell-pop-window-position shell-default-position
|
2016-01-26 16:58:40 +00:00
|
|
|
shell-pop-window-size shell-default-height
|
2015-05-21 04:53:54 +00:00
|
|
|
shell-pop-term-shell shell-default-term-shell
|
2016-04-28 14:22:01 +00:00
|
|
|
shell-pop-full-span shell-default-full-span)
|
2015-05-21 02:39:14 +00:00
|
|
|
(make-shell-pop-command eshell)
|
|
|
|
(make-shell-pop-command shell)
|
|
|
|
(make-shell-pop-command term shell-pop-term-shell)
|
2015-05-25 02:01:26 +00:00
|
|
|
(make-shell-pop-command multiterm)
|
2015-05-21 02:39:14 +00:00
|
|
|
(make-shell-pop-command ansi-term shell-pop-term-shell)
|
|
|
|
|
2015-05-21 10:31:48 +00:00
|
|
|
(add-hook 'term-mode-hook 'ansi-term-handle-close)
|
2015-10-24 20:56:58 +00:00
|
|
|
(add-hook 'term-mode-hook (lambda () (linum-mode -1)))
|
2015-05-22 11:39:01 +00:00
|
|
|
|
2015-11-18 00:38:05 +00:00
|
|
|
(spacemacs/set-leader-keys
|
2015-05-23 01:23:53 +00:00
|
|
|
"'" 'spacemacs/default-pop-shell
|
2016-04-07 18:52:41 +00:00
|
|
|
"ase" 'spacemacs/shell-pop-eshell
|
|
|
|
"asi" 'spacemacs/shell-pop-shell
|
|
|
|
"asm" 'spacemacs/shell-pop-multiterm
|
|
|
|
"ast" 'spacemacs/shell-pop-ansi-term
|
|
|
|
"asT" 'spacemacs/shell-pop-term))))
|
2015-05-21 02:39:14 +00:00
|
|
|
|
2016-01-09 02:27:26 +00:00
|
|
|
(defun shell/post-init-smooth-scrolling ()
|
|
|
|
(spacemacs/add-to-hooks 'spacemacs//unset-scroll-margin
|
|
|
|
'(eshell-mode-hook
|
|
|
|
comint-mode-hook
|
|
|
|
term-mode-hook)))
|
|
|
|
|
2015-05-21 02:39:14 +00:00
|
|
|
(defun shell/init-term ()
|
2016-01-22 15:26:52 +00:00
|
|
|
(spacemacs/register-repl 'term 'term)
|
|
|
|
(spacemacs/register-repl 'term 'ansi-term)
|
2015-05-21 02:39:14 +00:00
|
|
|
(defun term-send-tab ()
|
|
|
|
"Send tab in term mode."
|
|
|
|
(interactive)
|
|
|
|
(term-send-raw-string "\t"))
|
2016-01-30 11:32:53 +00:00
|
|
|
;; hack to fix pasting issue, the paste transient-state won't
|
2015-05-21 02:39:14 +00:00
|
|
|
;; work in term
|
|
|
|
(evil-define-key 'normal term-raw-map "p" 'term-paste)
|
|
|
|
(evil-define-key 'insert term-raw-map (kbd "C-c C-d") 'term-send-eof)
|
2015-12-03 21:21:45 +00:00
|
|
|
(evil-define-key 'insert term-raw-map (kbd "C-c C-z") 'term-stop-subjob)
|
2015-11-13 11:20:55 +00:00
|
|
|
(evil-define-key 'insert term-raw-map (kbd "<tab>") 'term-send-tab)
|
|
|
|
|
2016-03-09 09:06:28 +00:00
|
|
|
(when (eq dotspacemacs-editing-style 'vim)
|
|
|
|
(evil-define-key 'insert term-raw-map
|
|
|
|
(kbd "C-k") 'term-send-up
|
|
|
|
(kbd "C-j") 'term-send-down))
|
2015-11-13 11:20:55 +00:00
|
|
|
(evil-define-key 'normal term-raw-map
|
|
|
|
(kbd "C-k") 'term-send-up
|
2016-02-27 23:25:33 +00:00
|
|
|
(kbd "C-j") 'term-send-down)
|
|
|
|
|
|
|
|
(add-hook 'term-mode-hook 'spacemacs/disable-hl-line-mode))
|
2015-05-22 19:11:56 +00:00
|
|
|
|
2016-01-26 05:47:10 +00:00
|
|
|
(defun shell/init-xterm-color ()
|
|
|
|
(use-package xterm-color
|
|
|
|
:init
|
|
|
|
(progn
|
|
|
|
;; Comint and Shell
|
|
|
|
(add-hook 'comint-preoutput-filter-functions 'xterm-color-filter)
|
|
|
|
(setq comint-output-filter-functions
|
|
|
|
(remove 'ansi-color-process-output comint-output-filter-functions))
|
|
|
|
(setq font-lock-unfontify-region-function 'xterm-color-unfontify-region)
|
2016-04-06 12:41:19 +00:00
|
|
|
(add-hook 'eshell-mode-hook 'spacemacs/init-eshell-xterm-color))))
|
2016-04-29 21:48:00 +00:00
|
|
|
|
|
|
|
(defun shell/post-init-vi-tilde-fringe ()
|
|
|
|
(spacemacs/add-to-hooks 'spacemacs/disable-vi-tilde-fringe
|
|
|
|
'(comint-mode-hook
|
|
|
|
eshell-mode-hook
|
|
|
|
shell-mode-hook
|
|
|
|
term-mode-hook)))
|