2017-06-08 11:47:56 +02:00
|
|
|
;;; lang/rust/autoload.el -*- lexical-binding: t; -*-
|
2017-02-21 03:46:07 -05:00
|
|
|
|
2017-04-07 01:45:57 -04:00
|
|
|
;; TODO (defun +rust/run-cargo () (interactive))
|
|
|
|
|
2017-10-03 02:49:08 +02:00
|
|
|
;;;###autoload
|
|
|
|
(defun +rust-cargo-project-p ()
|
|
|
|
"Return t if this is a cargo project."
|
2018-03-14 18:44:55 -04:00
|
|
|
(locate-dominating-file buffer-file-name "Cargo.toml"))
|