There were a bunch of functions being defined to just be called once. It
was all very repetitive, and I thought this was a simpler way to
organize things. This just does the required work in one loop.
Now the user should use `SPC f e h` helm-spacemacs.
This is due to the fact that spacemacs layer is now a regular layer
stored in the "layers" directory.
- Rename contrib directory to layers
- Add new variable dotspacemacs-distribution
- Move spacemacs layer to layers/!distribution
- New layer spacemacs-core in layers/!distribution
- User can now set dotspacemacs-distribution to spacemacs or
spacemacs-core (default spacemacs)
spacemacs-core is very lightweight layer sufficient to build upon
spacemacs.
Previously, you had to set the evilnc-invert-comment-line-by-line
to be enable inverted comments. Since whether you want to invert
comments or not varies on a case to case basis, depending on the region
you wish to comment, this is bad UI.
Made two functions per original commenting function, one for inverse
the other for regular.
Added keybindings for the new inverted operations on capital letter,
so that comment lines is SPC c l and invert comment lines is SPC c L.
I removed the comment invert toggle as it is no longer needed.
(Also removed old docs which said that SPC c r is comment region;
it is actually recompile)
- Change key bindings to better conform to conventions
- `SPC m r l` to `SPC m s i` start REPL
- `SPC m r p` to `SPC m s f` send function
- `SPC m r P` to `SPC m s r` send region
- `SPC m l t` to `SPC m h t` display type
- Add functions to focus the REPL
- `SPC m s F` spacemacs/push-decl-elm-repl-focus
- `SPC m s R` spacemacs/push-elm-repl-focus
- Fix documentation spacing
- Fix company configuration in config.el
- Move company config outside elm-mode config
- Add missing post-init function for flycheck
- Restore search direction after leaving micro-state
- Previously pressing "N" during ahs micro-state would cause "n" and
"N" to be reversed
- "n" after "#" should go up, "n" after "*" should go down
- This matches vim behavior