mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-23 03:20:26 +10:00
Moving to Doom Emacs!
This commit is contained in:
26
.emacs.d/modules/lang/rust/autoload.el
Normal file
26
.emacs.d/modules/lang/rust/autoload.el
Normal file
@@ -0,0 +1,26 @@
|
||||
;;; lang/rust/autoload.el -*- lexical-binding: t; -*-
|
||||
|
||||
;; TODO (defun +rust/run-cargo () (interactive))
|
||||
|
||||
;;;###autoload
|
||||
(defun +rust-cargo-project-p ()
|
||||
"Return t if this is a cargo project."
|
||||
(locate-dominating-file buffer-file-name "Cargo.toml"))
|
||||
|
||||
;;;###autoload
|
||||
(defun +rust-racer-lookup-documentation (identifier)
|
||||
"A `+lookup/documentation' handler for Rust + Racer."
|
||||
(let ((buf (racer--describe identifier)))
|
||||
(when buf
|
||||
(pop-to-buffer buf)
|
||||
t)))
|
||||
|
||||
|
||||
;;
|
||||
;;; Custom Cargo commands
|
||||
|
||||
;;;###autoload
|
||||
(defun +rust/cargo-audit ()
|
||||
"Run 'cargo audit' for the current project."
|
||||
(interactive)
|
||||
(rustic-run-cargo-command "cargo audit -f"))
|
||||
Reference in New Issue
Block a user