dev: merge branch 'master'into pr7566
This commit is contained in:
commit
6ec6548551
3 changed files with 8 additions and 6 deletions
|
@ -86,8 +86,8 @@ buffer will be opened in the current workspace instead."
|
|||
(funcall consult--buffer-display (car buffer)))))))
|
||||
|
||||
;;;###autoload
|
||||
(defun +vertico/embark-open-in-new-workspace (x)
|
||||
"Open X (a file) in a new workspace."
|
||||
(interactive)
|
||||
(defun +vertico/embark-open-in-new-workspace (file)
|
||||
"Open file in a new workspace."
|
||||
(interactive "GFile:")
|
||||
(+workspace/new)
|
||||
(find-file x))
|
||||
(find-file file))
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
;;; requires nim nimsuggest nimble
|
||||
|
||||
(package! nim-mode :pin "744e076f0bea1c5ddc49f92397d9aa98ffa7eff8")
|
||||
(package! nim-mode :pin "1338e5b0d5e111ad932efb77d3cad680cc3b86c9")
|
||||
|
||||
(when (and (modulep! :checkers syntax)
|
||||
(not (modulep! :checkers syntax +flymake)))
|
||||
|
|
|
@ -614,7 +614,9 @@ relative to `org-directory', unless it is an absolute path."
|
|||
(format "https://github.com/%s"
|
||||
(string-remove-prefix
|
||||
"@" (+org-link-read-desc-at-point link)))))
|
||||
:face 'org-priority)
|
||||
:face (lambda (_)
|
||||
;; Avoid confusion with function `org-priority'
|
||||
'org-priority))
|
||||
(org-link-set-parameters
|
||||
"doom-changelog"
|
||||
:follow (lambda (link)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue