Skip to content

Commit

Permalink
Upgrade packages and fix various bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
raxod502 committed May 5, 2024
1 parent 20c0c9d commit 4bb3142
Show file tree
Hide file tree
Showing 2 changed files with 104 additions and 86 deletions.
26 changes: 22 additions & 4 deletions emacs/radian.el
Original file line number Diff line number Diff line change
Expand Up @@ -3722,12 +3722,14 @@ Return the new `auto-mode-alist' entry"
(add-to-list 'auto-mode-alist new-entry)
new-entry))

(defcustom json-mode-auto-mode-list '(".babelrc" ".bowerrc" "composer.lock")
(defcustom json-mode-auto-mode-list '(".babelrc"
".bowerrc"
"composer.lock")
"List of filenames for the JSON entry of `auto-mode-alist'.
Note however that custom `json-mode' entries in `auto-mode-alist'
won’t be affected."
:group 'json-mode
:group 'json
:type '(repeat string)
:set (lambda (symbol value)
"Update SYMBOL with a new regexp made from VALUE.
Expand Down Expand Up @@ -4057,6 +4059,7 @@ SYMBOL is as in `xref-find-definitions'."
;; Package `macrostep' provides a facility for interactively expanding
;; Elisp macros.
(radian-use-package macrostep
:straight (:fork "raxod502" :branch "fork/1")
:bind (("C-c e" . #'macrostep-expand)))

;;;;; Emacs Lisp byte-compilation
Expand Down Expand Up @@ -4308,7 +4311,7 @@ This makes the behavior of `find-file' more reasonable."
;; Don't set bookmarks when using `org-capture', since
;; `bookmark-face' may be set to a distracting color by the color
;; theme, which makes everything look really ugly.
(setq org-capture-bookmark nil))
(setq org-bookmark-names-plist nil))

;; Feature `org-clock' from package `org' provides the task clocking
;; functionality.
Expand Down Expand Up @@ -4548,7 +4551,18 @@ are probably not going to be installed."
(server-start))
;; Tell $EDITOR to use the Emacsclient.
(push (concat with-editor--envvar "="
(shell-quote-argument with-editor-emacsclient-executable)
;; Quoting is the right thing to do. Applications that
;; fail because of that, are the ones that need fixing,
;; e.g., by using 'eval "$EDITOR" file'. See #121.
(shell-quote-argument
;; If users set the executable manually, they might
;; begin the path with "~", which would get quoted.
(if (string-prefix-p
"~" with-editor-emacsclient-executable)
(concat (expand-file-name "~")
(substring
with-editor-emacsclient-executable 1))
with-editor-emacsclient-executable))
;; Tell the process where the server file is.
(and (not server-use-tcp)
(concat " --socket-name="
Expand Down Expand Up @@ -5272,6 +5286,10 @@ This is passed to `set-frame-font'."

;; Don't suggest shorter ways to type commands in M-x, since they
;; don't apply when using Vertico.
(setq extended-command-suggest-shorter nil)

;; Don't show an extra message about keybindings for M-x commands as
;; thoes are already shown in the completion menu.
(setq suggest-key-bindings 0)

;; Don't blink the cursor on the opening paren when you insert a
Expand Down
164 changes: 82 additions & 82 deletions emacs/versions.el
Original file line number Diff line number Diff line change
@@ -1,103 +1,103 @@
(("Emacs-wgrep" . "f9687c28bbc2e84f87a479b6ce04407bb97cfb23")
("all-the-icons.el" . "6f876fa11ef64af20d9b2a44fdabac6446de51ba")
("apache-mode" . "f2c11aac2f5fc598123e04f4604bea248689a117")
("apheleia" . "8f512dba3ee2eabae0dbfd8289b89d54c132cb87")
("atomic-chrome" . "061958ab96c31085b5daf449b1d826b052777b59")
("auctex" . "53b82804c9dd9dbea306876f3be84ebacbeb7e74")
(("Emacs-wgrep" . "208b9d01cfffa71037527e3a324684b3ce45ddc4")
("all-the-icons.el" . "ee414384938ccf2ce93c77d717b85dc5538a257d")
("apache-mode" . "00595893920ce755014d793839086bf15ac90075")
("apheleia" . "66bf5195b4e922f23a9d573f2823daeb63e7ed5b")
("atomic-chrome" . "072a137a19d7e6a300ca3e87c0e142a7f4ccb5fb")
("auctex" . "a5552370bde473b1043f20a6385f89122af9af7d")
("blackout" . "7707211370f03f03a2f74df15f42ac24a1e99300")
("buffer-move" . "e7800b3ab1bd76ee475ef35507ec51ecd5a3f065")
("cider" . "21ccc40d8e50b9b74ac09d8d31374211c92b27e1")
("clojure-mode" . "ad322e989e56c10c05bb286e5b55a82b1e031d62")
("closql" . "c3b34a6ec438d2e73309eed7bda26768b9a50335")
("cider" . "1cd6ab7b7cb4a7e079a273600c4d28307c3aba40")
("clojure-mode" . "af0e518a6b86f2c6f32dfb30b99c067071ed5cd4")
("closql" . "2bff36edd28c9a0d0c25b545b3837fa874376cc5")
("company-lsp" . "f921ffa0cdc542c21dc3dd85f2c93df4288e83bd")
("company-mode" . "f1877a370ca76d5cd6614c527635b2d6983188af")
("compat" . "2748abd7c7135fe5d873020061b2d58a66b8d505")
("company-mode" . "32f030a4c79bbf082cc21ec21b2cf8ba9dfa22cc")
("compat" . "6da45e886a8385c1c044d1429d122749fdf23c47")
("crontab-mode" . "7412f3df0958812bfcacd5875a409fa795fa8ecc")
("ctrlf" . "9b4cf6c79a961f2bfbb949805aa300fcf1eb40a6")
("dash.el" . "b6eef1a24dfbe57ba72d5eb1613fc05ff92e8e92")
("dockerfile-mode" . "c7e4e2541deb66d266f58c364e33a4a10cefbc2b")
("dumb-jump" . "0a783d1db610ff1dc4e1b7869589cff16ff92f7a")
("el-get" . "a5ba5852648a90ee0cde9fb5d72e69497d260eec")
("dash.el" . "885332bbc4582b08d4f24526250876f3a7569067")
("dockerfile-mode" . "39a012a27fcf6fb629c447d13b6974baf906714c")
("dumb-jump" . "ede6a04187e79a29ef31d14760ac0d8d4c5f4cc5")
("el-get" . "f8f651b448f0b5ba478a92bf1c361ff17b10e8d2")
("el-patch" . "92803e7ea6e07cd56667ed7ea0dfacfc1f37f6d9")
("elisp-refs" . "af73739084637c8ebadad337a8fe58ff4f1d2ec1")
("elisp-ruby-electric" . "f2323cd9b5df3b34aa9810ba8109502824925d23")
("emacs-websocket" . "82b370602fa0158670b1c6c769f223159affce9b")
("emacs-which-key" . "1ab1d0cc88843c9a614ed3226c5a1070e32e4823")
("emacsmirror-mirror" . "95617befb9ac26869e2ab2101e4a76fa5d40fdb7")
("emacsql" . "64012261f65fcdd7ea137d1973ef051af1dced42")
("epl" . "78ab7a85c08222cd15582a298a364774e3282ce6")
("eldoc" . "c9f5787b0d2295ecca61067eedbc45039e46da5d")
("elisp-refs" . "541a064c3ce27867872cf708354a65d83baf2a6d")
("elisp-ruby-electric" . "decf39c0d66a3fa171e16f4559d3deac89d8386d")
("emacs-websocket" . "40c208eaab99999d7c1e4bea883648da24c03be3")
("emacs-which-key" . "1e89fa000e9ba9549f15ef57abccd118d5f2fe1a")
("emacsmirror-mirror" . "4a348ac4c895dd8b013d7313ff079d0214bcf6ec")
("emacsql" . "5108c16c5e1d5bfdd41fcc0807241e28886ab763")
("esup" . "4b49c8d599d4cc0fbf994e9e54a9c78e5ab62a5f")
("f.el" . "d2019d4f9625bcc44349c69fe46d6645fd9ff4ff")
("flycheck" . "8541a61053bba1f2f31d0791e597cd3c78a21456")
("forge" . "361a65529965196b523a1d5fed44dc37a5c2b60e")
("f.el" . "1e7020dc0d4c52d3da9bd610d431cab13aa02d8c")
("flycheck" . "bec59eeb58f86b10f8235bf94c873f3b0352ac41")
("forge" . "359e424b968ad6763854bb9b11157caff1e775ca")
("fringe-helper.el" . "ef4a9c023bae18ec1ddd7265f1f2d6d2e775efdd")
("ghub" . "6a5de97649ff3eca9aa20b79f3526b4b3ab86b13")
("git-gutter" . "4c9e2f22b35918ce1cd9e64bce06a3ceda54095f")
("ghub" . "e0a65456098c5e0f2cf2724d071e9033f7b0bf3a")
("git-gutter" . "9afe45b41a82a332606d3e70ef85d323d27b9e4f")
("git-gutter-fringe" . "648cb5b57faec55711803cdc9434e55a733c3eba")
("git-link" . "fe2e8aa92dd8f1a9fb3f471658701487ff21f22b")
("git-modes" . "eca3bb42ea8abed9ef8549b2ac91bbea445c5bb5")
("gnu-elpa-mirror" . "a4f2d4b0e1d3dd8bde2d768458a402d63ad06722")
("go-mode.el" . "08aa90d52f0e7d2ad02f961b554e13329672d7cb")
("haskell-mode" . "79eaf444a72109f93f552abb53f834cc63bbf9f2")
("hcl-mode" . "751b79247f326ab52e00032e805775c37ad9f080")
("helpful" . "94a07d49a80f66f8ebc54a49a4b4f6899a65fbe3")
("ht.el" . "c4c1be487d6ecb353d07881526db05d7fc90ea87")
("hydra" . "9e9e00cb240ea1903ffd36a54956b3902c379d29")
("json-mode" . "eedb4560034f795a7950fa07016bd4347c368873")
("git-link" . "34d4989e3e2434316359ae6a9e8423e9951606d7")
("git-modes" . "52ea2a1281ea9df9b8732fe2add0e6a0c9c2cd11")
("gnu-elpa-mirror" . "a9c69c8b3b715f8ee6e3158acdfb683e530621ea")
("go-mode.el" . "6f4ff9ef874d151ed8d297a80f1bf27db5d9dbf0")
("haskell-mode" . "d23ec34788286405f377ce485d2a17e302d94a4f")
("hcl-mode" . "37f2cb1bf6fb51fbf99d4fac256298fcd6d1dd24")
("helpful" . "a32a5b3d959a7fccf09a71d97b3d7c888ac31c69")
("ht.el" . "1c49aad1c820c86f7ee35bf9fff8429502f60fef")
("hydra" . "317e1de33086637579a7aeb60f77ed0405bf359b")
("json-mode" . "77125b01c0ddce537085201098bea9b4b8ba6be3")
("json-snatcher" . "b28d1c0670636da6db508d03872d96ffddbc10f2")
("let-alist" . "021fc10df2e44faba4728d849ee767cf890aa51a")
("lsp-haskell" . "daa51072e1718ca075987901fccbbc2357bca1fc")
("lsp-mode" . "c9db552dcef80c481ecca6bf53c86a12f2a9cd55")
("lsp-pyright" . "c745228f39fdb35372b29b909f25fa6c98dc7c88")
("lsp-ui" . "8d4fa5a14f5b5c6f57bc69f454eba6861ed2ba9f")
("lua-mode" . "d17a00ca50aee197cd017d573b83367eb241cc44")
("macrostep" . "424e3734a1ee526a1bd7b5c3cd1d3ef19d184267")
("magit" . "f59df798194d4213b5a2b2f43a2ee25b71cbbb90")
("map" . "9f46b9c966505874d68d9036827a4f63b55ab846")
("markdown-mode" . "0b8dc23724caa66b18bded28c08f7516cba9d292")
("melpa" . "382cb915901971ff5e9b32156cbeb5639c3bf20f")
("no-littering" . "d9db6d88ccae0727fa96125fae8601cac80efde0")
("nongnu-elpa" . "e5adab3409abfa69ecbaeb07bb88d48f78e03d3f")
("org" . "3303a54d74805cdd2b6eda37285f259949f7ba2e")
("org-contrib" . "c6aef31ccfc7c4418c3b51e98f7c3bd8e255f5e6")
("osx-trash" . "af74a2055a15bf4182d8196600f7decd66eec634")
("package-lint" . "70529b2ecba5f3a037be8b2c6ecbca769c64b00e")
("parseclj" . "a8c4cf30fb68b66ae51541462a8b21753229a6e5")
("parseedn" . "a09686fbb9113b8b1b4f20c9e1dc0d6fea01a64f")
("let-alist" . "6e9f470e78cf50afa0e53a61da191d68d87a0104")
("lsp-haskell" . "47a1878cc1aa3a9de30e8db8950ca11139fd13f6")
("lsp-mode" . "b27d9db1e75d40ea5e1362386e9a6e66fa3b1bae")
("lsp-pyright" . "b891a5071fcb4371d7d817069cbb04f5bd160468")
("lsp-ui" . "a59fb5d02eaa97908a06cfc07156de73458c8ae8")
("lua-mode" . "d074e4134b1beae9ed4c9b512af741ca0d852ba3")
("macrostep" . "390da223244fda11b7176f4ba8dcbc35c94d1805")
("magit" . "e2ca80a26e40480b6dda66adad09dd1031e4da3e")
("map" . "9e592e741c3bee76c170d7462485fd9fc8cdd9ba")
("markdown-mode" . "0cdebc833ed9b98baf9f260ed12b1e36b0ca0e89")
("melpa" . "f5f6d68cdd49cea0f9baa7457a945df4ca530a8f")
("no-littering" . "caf2f7f5cac25fb0053e383f3475120bc696864f")
("nongnu-elpa" . "fda0e2eb3117a2bdcd6b07c483935628b1417b56")
("org" . "288e0a11c217991bd69acf2b6f6f720db1fbbf4e")
("org-contrib" . "3062acd0e350598727f8dac459ae3a5ee05db7c6")
("osx-trash" . "90f0c99206022fec646206018fcd63d9d2e57325")
("package-lint" . "17e4ab20dd3e36fa540007b4f4047170c23bdb10")
("parseclj" . "6af22372e0fe14df882dd300b22b12ba2d7e00b0")
("parseedn" . "3407e4530a367b6c2b857dae261cdbb67a440aaa")
("pip-requirements.el" . "216cd1690f80cc965d4ae47b8753fc185f778ff6")
("pkg-info" . "76ba7415480687d05a4353b27fea2ae02b8d9d61")
("pkgbuild-mode" . "9525be8ecbd3a0d0bc7cc27e6d0f403e111aa067")
("popup-el" . "c65905aa1a3ac32d1dbc8c1060605621e6143f80")
("prescient.el" . "c0eca3328313f1e93d24e686307516f43a484ba2")
("projectile" . "271007c6611fcb08ddd326d7de9727c2ad5ef265")
("protobuf" . "79c3d07c63e711255e0d566c9b876706e978686a")
("queue" . "130c2d656cd5d7376552272fab9e50a7c37d0c4a")
("popup-el" . "6a475b0384d24d94f541d535f5597daa8bb508d4")
("prescient.el" . "0765418e4362099db8788fcb745ce9b7602aa001")
("projectile" . "0163b335a18af0f077a474d4dc6b36e22b5e3274")
("protobuf" . "2f6e7055952eeff2fef2f29edb092c97e7949793")
("queue" . "df8a1a2ad77d57c25e7005f0add275c13f9db20f")
("restart-emacs" . "1607da2bc657fe05ae01f7fdf26f716eafead02c")
("rg.el" . "e9dc4ed342e0212d08fb82554dfd3c57fdfa5b1a")
("rust-mode" . "01ba44166cf16d9b78d99f2fa0c3c54c0f206894")
("s.el" . "08661efb075d1c6b4fa812184c1e5e90c08795a9")
("sesman" . "e0f555f963c9f02f8e4a50e06fc353eb4c15ee77")
("smartparens" . "8b6a3c3b31afd5b3f846e09859b5fc62eb06e7c1")
("spinner" . "34905eae12a236753fa88abc831eff1e41e8576e")
("rg.el" . "5420dc6ca05c6ab0954113772d784c4c968ca219")
("rust-mode" . "e54bbae8c4c2af580b5721ad5ac151f2ad19293e")
("s.el" . "dda84d38fffdaf0c9b12837b504b402af910d01d")
("seq" . "d6b97ea450817ecef174d9c65d59b69bc5721a35")
("sesman" . "7bca68dbbab0af26a6a23be1ff5fa97f9a18e022")
("smartparens" . "a5c68cac1bea737b482a37aa92de4f6efbf7580b")
("spinner" . "be1fcae967a3d3a00cb83ea764d8d329b45f8cd2")
("ssh-config-mode-el" . "d560a0876a93ad4130baf33dae1b9405ad37a405")
("straight.el" . "b3760f5829dba37e855add7323304561eb57a3d4")
("swift-mode" . "cdd194cbadcee724a9813da386f0a612082b1ab1")
("straight.el" . "146db4291047e3285027fa310d1b385c075e3e4b")
("swift-mode" . "26ca22a913cd6626fa6d9b187ffe34a82c075202")
("syntax-subword" . "9aa9b3f846bfe2474370642458a693ac4760d9fe")
("terraform-mode" . "e560caaa9d9a11b0868adf6d9dcae5ebb5055730")
("terraform-mode" . "a645c32a8f0f0d04034262ae5fea330d5c7a33c6")
("toml-mode.el" . "f6c61817b00f9c4a3cab1bae9c309e0fc45cdd06")
("transient" . "0ae0de43590b5b6984a83f9e044e7c426455ac6e")
("transpose-frame" . "12e523d70ff78cc8868097b56120848befab5dbc")
("treepy.el" . "3ac940e97f3d03e48ca9d7fcd74916a9b01c72f3")
("undo-tree" . "16f4121032d09ef44b3d7d02c4d02c3c2f18041f")
("use-package" . "0ad5d9d5d8a61517a207ab04bf69e71c081149eb")
("vertico" . "e077e957672ae8be35fbd95a7724fbdaa288236c")
("transient" . "2dd0102ec3df901d421fc338e5c768467cc54ecf")
("transpose-frame" . "94c87794d53883a2358d13da264ad8dab9a52daa")
("treepy.el" . "75fe3ec37e6f9b2bdfd6d0584efd984d0c00a43e")
("undo-tree" . "5e9f4c92348b3cfd6f140c1730294017dca4bc05")
("use-package" . "a6e856418d2ebd053b34e0ab2fda328abeba731c")
("vertico" . "b413071021a717bc25f730d2f94ce0740a9b8e34")
("vimrc-mode" . "13bc150a870d5d4a95f1111e4740e2b22813c30e")
("visual-regexp-steroids.el" . "a6420b25ec0fbba43bf57875827092e1196d8a9e")
("visual-regexp.el" . "48457d42a5e0fe10fa3a9c15854f1f127ade09b5")
("web-mode" . "57856ba64b9382811b35df0d9ab0a24aede0c1f0")
("with-editor" . "cfcbc2731e402b9169c0dc03e89b5b57aa988502")
("yaml-mode" . "535273d5a1eb76999d20afbcf4d9f056d8ffd2da")
("yaml.el" . "a19fbf948a945571300e5a20ff1dbfa6ecfa0d16")
("yasnippet" . "5cbdbf0d2015540c59ed8ee0fcf4788effdf75b6")
("web-mode" . "005aa62d6f41fbf9bc045cac3b3b772716ee8ba7")
("with-editor" . "1b4526453ef6bdee30635f469aa26085c02b1ac1")
("yaml-mode" . "7b5ce294fb15c2c8926fa476d7218aa415550a2a")
("yaml.el" . "70c4fcead97e9bd6594e418c922ae769818f4245")
("yasnippet" . "eb5ba2664c3a68ae4a53bb38b85418dd131b208f")
("zerodark-theme" . "b463528704f6eb00684c0ee003fbd8e42901cde0"))
:gamma

0 comments on commit 4bb3142

Please sign in to comment.