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)))))))
|
(funcall consult--buffer-display (car buffer)))))))
|
||||||
|
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
(defun +vertico/embark-open-in-new-workspace (x)
|
(defun +vertico/embark-open-in-new-workspace (file)
|
||||||
"Open X (a file) in a new workspace."
|
"Open file in a new workspace."
|
||||||
(interactive)
|
(interactive "GFile:")
|
||||||
(+workspace/new)
|
(+workspace/new)
|
||||||
(find-file x))
|
(find-file file))
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
;;; requires nim nimsuggest nimble
|
;;; requires nim nimsuggest nimble
|
||||||
|
|
||||||
(package! nim-mode :pin "744e076f0bea1c5ddc49f92397d9aa98ffa7eff8")
|
(package! nim-mode :pin "1338e5b0d5e111ad932efb77d3cad680cc3b86c9")
|
||||||
|
|
||||||
(when (and (modulep! :checkers syntax)
|
(when (and (modulep! :checkers syntax)
|
||||||
(not (modulep! :checkers syntax +flymake)))
|
(not (modulep! :checkers syntax +flymake)))
|
||||||
|
|
|
@ -614,7 +614,9 @@ relative to `org-directory', unless it is an absolute path."
|
||||||
(format "https://github.com/%s"
|
(format "https://github.com/%s"
|
||||||
(string-remove-prefix
|
(string-remove-prefix
|
||||||
"@" (+org-link-read-desc-at-point link)))))
|
"@" (+org-link-read-desc-at-point link)))))
|
||||||
:face 'org-priority)
|
:face (lambda (_)
|
||||||
|
;; Avoid confusion with function `org-priority'
|
||||||
|
'org-priority))
|
||||||
(org-link-set-parameters
|
(org-link-set-parameters
|
||||||
"doom-changelog"
|
"doom-changelog"
|
||||||
:follow (lambda (link)
|
:follow (lambda (link)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue