summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Streit <simon@netpanic.org>2023-06-19 22:43:30 +0200
committerSimon Streit <simon@netpanic.org>2023-06-21 22:21:48 +0200
commit04a8f9c6a3efc9e974fd526b3996ccd5dea5f7ea (patch)
treea0eaff31600ab43336e0ef8521fec7d054dff055
parent74316882838ff9a293a9c9be4d64aedc8da3e3d2 (diff)
siguix: Add emacs-native-shell-complete.
* siguix/packages/emacs-xyz.scm (emacs-native-shell-complete): New variable.
-rw-r--r--siguix/packages/emacs-xyz.scm24
1 files changed, 24 insertions, 0 deletions
diff --git a/siguix/packages/emacs-xyz.scm b/siguix/packages/emacs-xyz.scm
index 810384b..9b35823 100644
--- a/siguix/packages/emacs-xyz.scm
+++ b/siguix/packages/emacs-xyz.scm
@@ -371,3 +371,27 @@ Redmine API.")
(synopsis "Minor mode for org-mode with redmine integration Resources")
(description "")
(license license:gpl3+))))
+
+(define-public emacs-native-shell-complete
+ (let ((commit "7b5e7d86c39ce9833118db278034789a6c0ecfd6")
+ (revision "0"))
+ (package
+ (name "emacs-native-shell-complete")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/CeleritasCelery/emacs-native-shell-complete")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0khlr0g6b5ml3n0s49mzhlwfca7gcxf07sb2h6014vnhf1i7qy78"))))
+ (build-system emacs-build-system)
+ (propagated-inputs (list emacs-company))
+ (home-page "https://github.com/CeleritasCelery/emacs-native-shell-complete")
+ (synopsis "Completion in shell buffers using native mechanisms")
+ (description "This package provides the exact same completions in shell-mode as you
+get in a terminal emulator with the TAB key")
+ (license license:gpl3+))))