diff options
author | Mathieu Lirzin <mthl@gnu.org> | 2018-07-08 18:56:11 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-07-09 17:02:04 +0200 |
commit | 0bb78bf9502489b7dfd6a5f91f0d18bf64f7274e (patch) | |
tree | fe1f5a4bb923633187130b685adf20075b83f6c1 /gnu | |
parent | 6c123c2666f423433a256ccdd954fb3470c29a84 (diff) | |
download | patches-0bb78bf9502489b7dfd6a5f91f0d18bf64f7274e.tar patches-0bb78bf9502489b7dfd6a5f91f0d18bf64f7274e.tar.gz |
gnu: Add emacs-typescript-mode.
* gnu/packges/emacs.scm (emacs-typescript-mode): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 9bd4114559..b195b2ccf9 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -4208,6 +4208,33 @@ features: @end itemize") (license license:gpl3+))) +(define-public emacs-typescript-mode + (package + (name "emacs-typescript-mode") + (version "0.3") + (source (origin + (method url-fetch) + (uri (string-append + "https://github.com/ananthakumaran/typescript.el" + "/archive/v" version ".tar.gz")) + (sha256 + (base32 + "1gqjirm8scf0wysm7x97zdfbs4qa5nqdl64jfbkd18iskv5mg3rj")) + (file-name (string-append name "-" version ".tar.gz")))) + (build-system emacs-build-system) + (home-page "https://github.com/ananthakumaran/typescript.el") + (synopsis "Emacs major mode for editing Typescript code") + (description + "This is based on Karl Landstrom's barebones @code{typescript-mode}. +This is much more robust and works with @code{cc-mode}'s comment +filling (mostly). The modifications to the original @code{javascript.el} mode +mainly consisted in replacing \"javascript\" with \"typescript\" + +The main features of this Typescript mode are syntactic highlighting (enabled +with @code{font-lock-mode} or @code{global-font-lock-mode}), automatic +indentation and filling of comments and C preprocessor fontification.") + (license license:gpl3+))) + (define-public emacs-markdown-mode (package (name "emacs-markdown-mode") |