-
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.
Merge pull request #26 from kickingvegas/merge-development-to-main-20…
…240728_200918 Merge development to main 20240728_200918
- Loading branch information
Showing
4 changed files
with
23 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,8 @@ | |
;; Author: Charles Choi <[email protected]> | ||
;; URL: https://github.com/kickingvegas/casual-suite | ||
;; Keywords: tools | ||
;; Version: 1.3.0 | ||
;; Package-Requires: ((emacs "29.1") (casual-calc "1.9.0") (casual-isearch "1.7.0") (casual-dired "1.4.0") (casual-ibuffer "1.0.1") (casual-avy "1.2.0") (casual-info "1.2.0") (casual-re-builder "1.0.2")) | ||
;; Version: 1.4.0 | ||
;; Package-Requires: ((emacs "29.1") (casual-calc "1.9.0") (casual-isearch "1.7.0") (casual-dired "1.4.0") (casual-ibuffer "1.0.1") (casual-avy "1.2.0") (casual-info "1.2.0") (casual-re-builder "1.0.2") (casual-bookmarks "1.0.0")) | ||
|
||
;; This program is free software; you can redistribute it and/or modify | ||
;; it under the terms of the GNU General Public License as published by | ||
|
@@ -26,6 +26,7 @@ | |
;; An umbrella package to support a single installation point for all Casual | ||
;; porcelains. Included are porcelains for the following packages: | ||
|
||
;; - Bookmarks (casual-bookmarks) | ||
;; - Calc (casual-calc) | ||
;; - Dired (casual-dired) | ||
;; - I-Search (casual-isearch) | ||
|
@@ -53,6 +54,7 @@ | |
;; (keymap-global-set "M-g" #'casual-avy-tmenu) | ||
;; (keymap-set reb-mode-map "C-o" #'casual-re-builder-tmenu) | ||
;; (keymap-set reb-lisp-mode-map "C-o" #'casual-re-builder-tmenu) | ||
;; (keymap-set bookmark-bmenu-mode-map "C-o" #'casual-bookmarks-tmenu) | ||
|
||
;;; Code: | ||
|
||
|
@@ -63,13 +65,15 @@ | |
(require 'casual-info) | ||
(require 'casual-re-builder) | ||
(require 'casual-avy) | ||
(require 'casual-bookmarks) | ||
|
||
(defun casual-suite-about-suite () | ||
"Casual Suite is a collection of all Casual porcelains. | ||
This is an umbrella package that collects all the Casual packages. | ||
Included are porcelains for the following packages: | ||
- Bookmarks (casual-bookmarks) | ||
- Calc (casual-calc) | ||
- Dired (casual-dired) | ||
- I-Search (casual-isearch) | ||
|