spacemacs/layers/+lang/lua/README.org

39 lines
1.2 KiB
Org Mode
Raw Normal View History

#+TITLE: Lua layer
2015-06-10 16:44:30 +00:00
#+TAGS: general|layer|multi-paradigm|programming
2019-05-05 17:26:40 +00:00
2015-06-10 16:44:30 +00:00
[[file:img/lua.gif]]
2019-05-07 20:05:06 +00:00
* Table of Contents :TOC_5_gh:noexport:
2017-05-22 14:16:12 +00:00
- [[#description][Description]]
- [[#features][Features:]]
- [[#install][Install]]
- [[#key-bindings][Key bindings]]
2017-05-22 14:16:12 +00:00
- [[#commands][Commands]]
2015-06-10 16:44:30 +00:00
* Description
This layer adds support for editing Lua.
** Features:
2015-06-10 16:44:30 +00:00
- Editing lua files using [[https://github.com/immerrr/lua-mode][lua-mode]]
- Sending code to a lua REPL
- Code linting using [[https://github.com/mpeterv/luacheck][Luacheck]]
2015-06-10 16:44:30 +00:00
* Install
To use this configuration layer, add it to your =~/.spacemacs=. You will need to
add =lua= to the existing =dotspacemacs-configuration-layers= list in this
file.
2015-06-10 16:44:30 +00:00
In order to enable code linting, install [[https://github.com/mpeterv/luacheck][Luacheck]].
2015-06-10 16:44:30 +00:00
* Key bindings
2015-06-10 16:44:30 +00:00
** Commands
| Key binding | Description |
2015-06-10 16:44:30 +00:00
|-------------+--------------------------------------------|
| ~SPC m d~ | lookup thing at point in lua documentation |
| ~SPC m s b~ | send buffer contents to REPL |
| ~SPC m s f~ | send current function to REPL |
| ~SPC m s l~ | send current line to REPL |
| ~SPC m s r~ | send current region to REPL |