From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48973) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fcCzh-0004VD-Ij for guix-patches@gnu.org; Sun, 08 Jul 2018 12:57:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fcCzf-0003iE-71 for guix-patches@gnu.org; Sun, 08 Jul 2018 12:57:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:43430) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fcCzf-0003i5-10 for guix-patches@gnu.org; Sun, 08 Jul 2018 12:57:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fcCze-000377-PR for guix-patches@gnu.org; Sun, 08 Jul 2018 12:57:02 -0400 Subject: [bug#32097] [PATCH 3/3] gnu: Add emacs-tide. Resent-Message-ID: From: Mathieu Lirzin Date: Sun, 8 Jul 2018 18:56:12 +0200 Message-Id: <20180708165612.3011-3-mthl@gnu.org> In-Reply-To: <20180708165612.3011-1-mthl@gnu.org> References: <20180708165612.3011-1-mthl@gnu.org> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 32097@debbugs.gnu.org Cc: Mathieu Lirzin * gnu/packges/emacs.scm (emacs-tide): New variable. --- gnu/packages/emacs.scm | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 8dcf1717c..fcddabc99 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -4233,6 +4233,45 @@ 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-tide + (package + (name "emacs-tide") + (version "2.8.3.1") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/ananthakumaran/tide" + "/archive/v" version ".tar.gz")) + (sha256 + (base32 + "1k0kzqiv1hfs0kqm37947snzhrsmand3i9chvm6a2r5lb8v9q47y")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-dash" ,emacs-dash) + ("emacs-s" ,emacs-s) + ("emacs-flycheck" ,flycheck) + ("emacs-typescript-mode" ,emacs-typescript-mode))) + (home-page "https://github.com/ananthakumaran/tide") + (synopsis "Typescript IDE for Emacs") + (description + "Tide is an Interactive Development Environment (IDE) for Emacs which +provides the following features: + +@itemize +@item ElDoc +@item Auto complete +@item Flycheck +@item Jump to definition, Jump to type definition +@item Find occurrences +@item Rename symbol +@item Imenu +@item Compile On Save +@item Highlight Identifiers +@item Code Fixes +@item Code Refactor +@item Organize Imports +@end itemize") + (license license:gpl3+))) + (define-public emacs-markdown-mode (package (name "emacs-markdown-mode") -- 2.18.0