diff options
author | Kyle Meyer <kyle@kyleam.com> | 2017-02-06 23:39:52 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2017-02-06 23:39:58 -0500 |
commit | 47107701be1f0cd879802863a6ba8c335d1949b6 (patch) | |
tree | 36215ab16819c7dd394c9a438b8ca5dca89d9959 /snippets | |
parent | 5b37f0761f03646a3f43fe39e26e7ea2cbfa5aa9 (diff) | |
download | emacs.d-47107701be1f0cd879802863a6ba8c335d1949b6.tar.gz |
snippets/sh-mode: Replace bash shebang with sh shebang
Diffstat (limited to 'snippets')
-rw-r--r-- | snippets/sh-mode/bash-shebang | 6 | ||||
-rw-r--r-- | snippets/sh-mode/sh-shebang | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/snippets/sh-mode/bash-shebang b/snippets/sh-mode/bash-shebang deleted file mode 100644 index fb377d5..0000000 --- a/snippets/sh-mode/bash-shebang +++ /dev/null @@ -1,6 +0,0 @@ -# -*- mode: snippet -*- -# name: bash shebang -# key: sb -# -- -#!/usr/bin/env bash -$0
\ No newline at end of file diff --git a/snippets/sh-mode/sh-shebang b/snippets/sh-mode/sh-shebang new file mode 100644 index 0000000..c594a21 --- /dev/null +++ b/snippets/sh-mode/sh-shebang @@ -0,0 +1,6 @@ +# -*- mode: snippet -*- +# name: sh shebang +# key: sb +# -- +#!/usr/bin/env sh +$0
\ No newline at end of file |