78297be625
* Fix various isolated typos "apppend" -> "append" "availabe" -> "available" "Descripti using ternon" -> "Description" "you have not them" -> "you don't have them" "new on" -> "new one" "plained" -> "curved" "repel" -> "REPL" "vairable" -> "variable" * Fix a few errors in the CoffeeScript layer readme Add a missing "the". Correct a reference to the layer as "javascript" to "coffeescript". Fix the syntax on the link to CoffeeLint. * Fix typos: "dofile" -> "dotfile" * Fix typos: "formated" and "formating" "formated" -> "formatted" "formating" -> "formatting" * hy: Fix docstrings in funcs.el Fix copy-and-pasted docstring text for spacemacs/hy-shell-eval-current-form-and-go and spacemacs/hy-shell-eval-region-and-go. * Fix typos: "indendation" -> "indentation" * Fix typos: "the the", "a a" Fix duplicated (or misplaced) articles. * Fix typos: "wether" -> "whether" * Fix typos: "intialize" -> "initialize" |
||
---|---|---|
.. | ||
img | ||
funcs.el | ||
layers.el | ||
packages.el | ||
README.org |
Hy layer
Description
This layer adds support for the Hy language based on Python.
Features:
- syntax-highlighting
- Auto-completion
- Code Navigation
- Python test runners (see python layer)
- Virtual Environment using pyvenv and pyenv
- Org Babel support
Install
Layer
To use this configuration layer, add it to your ~/.spacemacs
. You will need to
add hy
to the existing dotspacemacs-configuration-layers
list in this file.
To install hy
globally:
pip install hy
Key Bindings
Debug
Key Binding | Description |
---|---|
SPC m d d |
insert pdb |
SPC m d t |
insert pdb threaded |
REPL
Start a Hy inferior REPL process with SPC m s i
. If hy
is
available in system executable search paths, hy
will be used to
launch the shell. You may change your system executable search path
by activating a virtual environment.
Send code to hy REPL commands:
Key Binding | Description |
---|---|
SPC m s b |
send buffer to the REPL |
SPC m s B |
send buffer to the REPL and switch to it |
SPC m s c |
send form containing current point to the REPL |
SPC m s C |
send form containing current point to the REPL and switch to it |
SPC m s i |
start and/or switch to REPL |
SPC m s r |
send current region to the REPL |
SPC m s R |
send current region to the REPL and switch to it |
SPC m s s |
start and/or swithc to REPL |
Tests
Key Binding | Description |
---|---|
SPC m t a |
launch all tests of the project |
SPC m t A |
launch all tests of the project in debug mode |
SPC m t m |
launch all tests of the current module |
SPC m t M |
launch all tests of the current module in debug mode |