-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Sachin Patil <[email protected]>
- Loading branch information
Sachin Patil
committed
Dec 3, 2020
1 parent
7bfea92
commit d5cf5ba
Showing
4 changed files
with
42 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
image: iquiw/alpine-emacs | ||
|
||
before_script: | ||
- apk add make | ||
|
||
build: | ||
stage: build | ||
script: | ||
- make clean | ||
- make | ||
|
||
test: | ||
stage: test | ||
script: | ||
- make clean | ||
- make test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
;;; insert-shebang.el --- Insert shebang line automatically. | ||
|
||
;; Copyright (C) 2013-2018 Sachin Patil | ||
;; Copyright (C) 2013-2020 Sachin Patil | ||
|
||
;; Author: Sachin Patil <[email protected]> | ||
;; URL: http://github.com/psachin/insert-shebang | ||
;; URL: https://gitlab.com/psachin/insert-shebang | ||
;; Keywords: shebang, tool, convenience | ||
;; Version: 0.9.6 | ||
;; Version: 0.9.7 | ||
|
||
;; This file is NOT a part of GNU Emacs. | ||
|
||
|
@@ -15,7 +15,7 @@ | |
|
||
;;; Commentary: | ||
;; Inserts shebang line automatically | ||
;; URL: http://github.com/psachin/insert-shebang | ||
;; URL: https://gitlab.com/psachin/insert-shebang | ||
|
||
;; Install | ||
|
||
|
@@ -36,7 +36,8 @@ | |
(defgroup insert-shebang nil | ||
"Inserts shebang line automatically." | ||
:group 'extensions | ||
:link '(url-link :tag "Github" "https://github.com/psachin/insert-shebang")) | ||
:link '(url-link :tag "github" "https://github.com/psachin/insert-shebang" | ||
:tag "gitlab" "https://gitlab.com/psachin/insert-shebang")) | ||
|
||
(defcustom insert-shebang-env-path "/usr/bin/env" | ||
"Full path to `env' binary. | ||
|
@@ -61,7 +62,7 @@ terminal." | |
:group 'insert-shebang) | ||
|
||
(defcustom insert-shebang-ignore-extensions | ||
'("txt" "org") | ||
'("txt" "org" "el") | ||
"*Add extensions you want to ignore. | ||
List of file extensions to be ignored by default." | ||
:type '(repeat (string :tag "extn")) | ||
|