2016-01-06 05:21:55 +00:00
|
|
|
#+TITLE: Shell Scripts layer
|
2015-06-10 16:44:30 +00:00
|
|
|
|
|
|
|
[[file:img/fish.png]]
|
|
|
|
|
2016-03-31 02:59:55 +00:00
|
|
|
* Table of Contents :TOC_4_gh:noexport:
|
2017-05-22 14:16:12 +00:00
|
|
|
- [[#description][Description]]
|
|
|
|
- [[#features][Features]]
|
|
|
|
- [[#install][Install]]
|
|
|
|
- [[#linting][Linting]]
|
2016-11-12 21:08:57 +00:00
|
|
|
- [[#style-checking][Style checking]]
|
2017-05-22 14:16:12 +00:00
|
|
|
- [[#key-bindings][Key Bindings]]
|
2015-06-10 16:44:30 +00:00
|
|
|
|
|
|
|
* Description
|
|
|
|
|
|
|
|
This simple layer adds support for shell scripting.
|
|
|
|
|
2016-01-18 03:06:04 +00:00
|
|
|
Supported scripting files:
|
|
|
|
- =.sh=
|
2015-06-10 16:44:30 +00:00
|
|
|
- =.fish=: [[https://github.com/fish-shell/fish-shell][fish shell]]
|
|
|
|
|
2015-06-10 21:16:01 +00:00
|
|
|
*Note:* For Windows scripting see the layer =windows-scripts=
|
2015-06-10 16:44:30 +00:00
|
|
|
|
2016-02-10 19:48:29 +00:00
|
|
|
** Features
|
|
|
|
- Auto-completion using [[https://github.com/Alexander-Miller/company-shell][company-shell]]
|
2016-06-30 06:33:53 +00:00
|
|
|
- =Sh= scripts linting using [[https://www.shellcheck.net/][shellcheck]]
|
2016-11-12 21:08:57 +00:00
|
|
|
- =Sh= scripts style checking using [[https://github.com/openstack-dev/bashate][bashate]]
|
2016-02-10 19:48:29 +00:00
|
|
|
|
2015-06-10 16:44:30 +00:00
|
|
|
* Install
|
2016-01-06 05:21:55 +00:00
|
|
|
To use this configuration layer, add it to your =~/.spacemacs=. You will need to
|
|
|
|
add =shell-scripts= to the existing =dotspacemacs-configuration-layers= list in this
|
|
|
|
file.
|
2015-06-10 16:44:30 +00:00
|
|
|
|
2016-06-30 06:33:53 +00:00
|
|
|
** Linting
|
|
|
|
In order to enable =sh= scripts linting, install [[https://www.shellcheck.net/][shellcheck]].
|
|
|
|
|
2016-11-12 21:08:57 +00:00
|
|
|
** Style checking
|
|
|
|
In order to enable =sh= scripts style checking, install [[https://github.com/openstack-dev/bashate][bashate]].
|
|
|
|
|
2015-06-10 16:44:30 +00:00
|
|
|
* Key Bindings
|
|
|
|
|
2016-01-08 14:37:39 +00:00
|
|
|
| Key Binding | Description |
|
|
|
|
|-------------+-----------------------------------------------------------|
|
2016-09-16 18:03:28 +00:00
|
|
|
| ~SPC i !~ | insert shebang in a script file |
|
2016-01-08 14:37:39 +00:00
|
|
|
| ~SPC m \~ | insert end-of-line backslashes to the lines in the region |
|
|
|
|
|