fix(julia): duplicate popup rules
Having the same rule in two separate package configs means users must be aware of both to modify either, which is avoidable complexity. i.e. (after! (:or julia-repl julia-snail) (set-popup-rule! "^\\*julia" ...))
This commit is contained in:
parent
d205643cab
commit
881defae2d
1 changed files with 2 additions and 1 deletions
|
@ -53,7 +53,8 @@
|
||||||
:hook (+julia-repl-start . +julia-override-repl-escape-char-h)
|
:hook (+julia-repl-start . +julia-override-repl-escape-char-h)
|
||||||
:hook (+julia-repl-start . julia-repl-use-emacsclient)
|
:hook (+julia-repl-start . julia-repl-use-emacsclient)
|
||||||
:config
|
:config
|
||||||
(set-popup-rule! "^\\*julia.*\\*$" :ttl nil)
|
(unless (modulep! +snail)
|
||||||
|
(set-popup-rule! "^\\*julia.*\\*$" :ttl nil))
|
||||||
|
|
||||||
(when (modulep! :ui workspaces)
|
(when (modulep! :ui workspaces)
|
||||||
(defadvice! +julia--namespace-repl-buffer-to-workspace-a (&optional executable-key suffix)
|
(defadvice! +julia--namespace-repl-buffer-to-workspace-a (&optional executable-key suffix)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue