spacemacs/layers/+lang
syl20bnr 82fdd9a511 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 bdd702dfbe.
  - Revert "avoid being evil in deft with emacs editing style"
    commit f3a16f49ed.

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 21:16:55 -04:00
..
agda Fix inline code blocks 2016-03-01 18:51:13 +01:00
asciidoc Clean copyrights and update for year 2016 2016-01-11 21:42:17 -05:00
asm asm: clean up and tweaks 2016-01-11 22:58:57 -05:00
autohotkey Clean copyrights and update for year 2016 2016-01-11 21:42:17 -05:00
c-c++ c-c++: fix c-c++/post-init-semantic 2016-03-10 23:13:19 -05:00
clojure Use evil in holy-mode 2016-03-13 21:16:55 -04:00
common-lisp Register all REPLs and make SPC m ' bindings 2016-01-31 23:39:25 -05:00
csharp Deprecation of extensions and <pkg>-excluded-packages variables 2016-01-17 22:06:04 -05:00
csv csv layer: sort key bindings 2016-01-18 01:26:06 -05:00
d Tweak flycheck loading process 2016-01-31 23:04:48 -05:00
elixir elixir: fix lazy installation configuration 2016-03-05 23:25:00 -05:00
elm Use evil in holy-mode 2016-03-13 21:16:55 -04:00
emacs-lisp Remove enable-semantic-mode function 2016-03-10 23:13:19 -05:00
erlang Tweak flycheck loading process 2016-01-31 23:04:48 -05:00
ess Remove rainbow-delimiters-mode from mode-specific hooks 2016-03-09 20:23:29 -05:00
extra-langs use faust-mode from melpa 2016-02-01 14:13:52 +01:00
fsharp Use evil in holy-mode 2016-03-13 21:16:55 -04:00
go Show function signature for Golang buffers. 2016-02-16 23:59:51 -05:00
haskell haskell: Add all haskell-mode keybindings to literate-haskell-mode 2016-02-16 23:30:40 -05:00
html Remove rainbow-delimiters-mode from mode-specific hooks 2016-03-09 20:23:29 -05:00
idris Use evil in holy-mode 2016-03-13 21:16:55 -04:00
ipython-notebook Change all references of micro-state in codebase to transient-state 2016-01-31 23:04:47 -05:00
java Fix inline code blocks 2016-03-01 18:51:13 +01:00
javascript Use evil in holy-mode 2016-03-13 21:16:55 -04:00
latex Fix inline code blocks 2016-03-01 18:51:13 +01:00
lua update lua readme 2016-02-25 20:32:12 +01:00
markdown Add Rust support in markdown files 2016-02-23 20:48:13 +01:00
nim Tweak flycheck loading process 2016-01-31 23:04:48 -05:00
ocaml Use evil in holy-mode 2016-03-13 21:16:55 -04:00
octave octave: explicitly list it as a built-in package 2016-03-06 17:48:51 -05:00
php Clean copyrights and update for year 2016 2016-01-11 21:42:17 -05:00
plantuml Include plantuml as a babel language if jar is defined 2016-02-16 23:14:53 -05:00
purescript Register all REPLs and make SPC m ' bindings 2016-01-31 23:39:25 -05:00
python Use evil in holy-mode 2016-03-13 21:16:55 -04:00
racket Use evil in holy-mode 2016-03-13 21:16:55 -04:00
ruby Fix chruby in the ruby layer 2016-03-05 20:54:57 +01:00
rust rustfmt: Remove obsolete package 2016-02-23 20:42:25 +01:00
scala Use evil in holy-mode 2016-03-13 21:16:55 -04:00
scheme Update Scheme docs to curl over https 2016-03-01 18:50:32 +01:00
shell-scripts shell-scripts: Enable flycheck in sh-mode 2016-03-03 20:43:32 +01:00
sml Use evil in holy-mode 2016-03-13 21:16:55 -04:00
sql Use evil in holy-mode 2016-03-13 21:16:55 -04:00
swift Clean copyrights and update for year 2016 2016-01-11 21:42:17 -05:00
typescript add typescript fmt 2016-02-17 00:05:47 -05:00
vimscript Clean copyrights and update for year 2016 2016-01-11 21:42:17 -05:00
windows-scripts Deprecation of extensions and <pkg>-excluded-packages variables 2016-01-17 22:06:04 -05:00
yaml Clean copyrights and update for year 2016 2016-01-11 21:42:17 -05:00