forked from dimitri/el-get
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* master: Add recipe for lsp-pyright (dimitri#2908) Fix swiper build (dimitri#2907) Remove ERT and "package" installation in CI (dimitri#2906) Add Emacs 28.2 to CI builds and fix newly introduced warnings (dimitri#2905) Upgrade deprecated actions/checkout@v2 to v3 (dimitri#2904)
- Loading branch information
Showing
7 changed files
with
33 additions
and
36 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
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
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,5 @@ | ||
(:name lsp-pyright | ||
:description "lsp-mode client leveraging Pyright language server" | ||
:depends (dash lsp-mode ht) | ||
:type github | ||
:pkgname "emacs-lsp/lsp-pyright") |
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,10 +1,20 @@ | ||
(:name swiper | ||
:description "Gives you an overview as you search for a regex." | ||
:type github | ||
:depends (cl-lib avy) | ||
:depends (cl-lib avy hydra) | ||
:pkgname "abo-abo/swiper" | ||
:build `(("make" ,(format "emacs=%s -L %s" el-get-emacs (concat (file-name-as-directory el-get-dir) "avy")) "compile") | ||
("makeinfo" "-o" "doc/ivy.info" "doc/ivy.texi")) | ||
:build/berkeley-unix `(("gmake" ,(format "emacs=%s -L %s" el-get-emacs (concat (file-name-as-directory el-get-dir) "avy")) "compile") | ||
("gmakeinfo" "-o" "doc/ivy.info" "doc/ivy.texi")) | ||
:build `(("make" | ||
,(format "emacs=%s -L %s -L %s" | ||
el-get-emacs | ||
(concat (file-name-as-directory el-get-dir) "avy") | ||
(concat (file-name-as-directory el-get-dir) "hydra")) | ||
"compile") | ||
("makeinfo" "-o" "doc/ivy.info" "doc/ivy.texi")) | ||
:build/berkeley-unix `(("gmake" | ||
,(format "emacs=%s -L %s -L %s" | ||
el-get-emacs | ||
(concat (file-name-as-directory el-get-dir) "avy") | ||
(concat (file-name-as-directory el-get-dir) "hydra")) | ||
"compile") | ||
("gmakeinfo" "-o" "doc/ivy.info" "doc/ivy.texi")) | ||
:info "doc/ivy.info") |
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