branch: elpa/rust-mode
commit 0a942686fde57bb0fe9b59c0148acdb67455eaaf
Merge: a871d10 fe02536
Author: Niko Matsakis <[email protected]>
Commit: GitHub <[email protected]>
Merge pull request #307 from Bunogi/master
Add `await` to list of keywords
---
rust-mode.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rust-mode.el b/rust-mode.el
index 4ded41a..c7afd34 100644
--- a/rust-mode.el
+++ b/rust-mode.el
@@ -533,7 +533,7 @@ buffer."
;; Font-locking definitions and helpers
(defconst rust-mode-keywords
- '("as" "async"
+ '("as" "async" "await"
"box" "break"
"const" "continue" "crate"
"do" "dyn"