mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add emacs-fish-mode.
* gnu/packages/emacs-xyz.scm (emacs-fish-mode): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
c6b384de50
commit
884cc87164
1 changed files with 21 additions and 0 deletions
|
@ -14455,6 +14455,27 @@ (define-public emacs-prettier
|
|||
provides a minor mode that autoformats the buffer upon saving.")
|
||||
(license license:expat))))
|
||||
|
||||
(define-public emacs-fish-mode
|
||||
(package
|
||||
(name "emacs-fish-mode")
|
||||
(version "0.1.4")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/wwwjfy/emacs-fish")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0a74ghmjjrxfdhk4mvq6lar4w6l6lc4iilabs99smqr2fn5rsslq"))))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "https://github.com/wwwjfy/emacs-fish")
|
||||
(synopsis "Major mode for Fish shell scripts")
|
||||
(description "This package provides syntax highlighting and indentation
|
||||
functions for Fish shell scripts.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-semantic-refactor
|
||||
;; The last release, 0.5, was made on 2015-07-26 and there have been 47
|
||||
;; commits since then.
|
||||
|
|
Loading…
Reference in a new issue