summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBunogi <2bunogi@gmail.com>2019-05-14 01:01:45 +0200
committerBunogi <2bunogi@gmail.com>2019-05-14 01:01:45 +0200
commitfe02536eb627f2536729dd2c6df55fbf31bf1aaf (patch)
tree21b51195258ca83d202593ba18a30cb59bf66f21
parenta871d108c745276e93ff1dec7c65e2e5a57e6d8c (diff)
downloadrust-mode-fe02536eb627f2536729dd2c6df55fbf31bf1aaf.tar.gz
Add `await` to list of keywords
-rw-r--r--rust-mode.el2
1 files changed, 1 insertions, 1 deletions
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"