2016-01-06 05:21:55 +00:00
|
|
|
#+TITLE: Shell Scripts layer
|
2015-06-10 16:44:30 +00:00
|
|
|
|
|
|
|
[[file:img/fish.png]]
|
|
|
|
|
2018-09-19 03:54:47 +00:00
|
|
|
* Table of Contents :TOC_4_gh:noexport:
|
2017-05-22 14:16:12 +00:00
|
|
|
- [[#description][Description]]
|
2017-08-28 21:58:10 +00:00
|
|
|
- [[#features][Features:]]
|
2017-05-22 14:16:12 +00:00
|
|
|
- [[#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
|
|
|
|
2017-08-28 21:58:10 +00:00
|
|
|
** Features:
|
2016-02-10 19:48:29 +00:00
|
|
|
- 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 |
|
|
|
|
|-------------+-----------------------------------------------------------|
|
|
|
|
| ~SPC m \~ | insert end-of-line backslashes to the lines in the region |
|
2017-08-05 22:10:39 +00:00
|
|
|
| ~SPC i !~ | insert shebang in a script file |
|
|
|
|
| ~SPC m i !~ | insert shebang in a script file |
|
|
|
|
| ~SPC m i c~ | insert switch case statement if supported by shell |
|
|
|
|
| ~SPC m i i~ | insert if statement if supported by shell |
|
|
|
|
| ~SPC m i f~ | insert function definition if supported by shell |
|
|
|
|
| ~SPC m i o~ | insert for loop if supported by shell |
|
|
|
|
| ~SPC m i e~ | insert an indexed for loop if supported by shell |
|
|
|
|
| ~SPC m i w~ | insert while loop if supported by shell |
|
|
|
|
| ~SPC m i r~ | insert repeat loop if supported by shell |
|
|
|
|
| ~SPC m i s~ | insert select loop if supported by shell |
|
|
|
|
| ~SPC m i u~ | insert until loop if supported by shell |
|
|
|
|
| ~SPC m i g~ | insert a getopts while loop if supported by shell |
|