summaryrefslogtreecommitdiff
path: root/rust-mode.el
diff options
context:
space:
mode:
authorNiko Matsakis <niko@alum.mit.edu>2019-05-16 16:55:50 -0400
committerGitHub <noreply@github.com>2019-05-16 16:55:50 -0400
commit0a942686fde57bb0fe9b59c0148acdb67455eaaf (patch)
tree21b51195258ca83d202593ba18a30cb59bf66f21 /rust-mode.el
parenta871d108c745276e93ff1dec7c65e2e5a57e6d8c (diff)
parentfe02536eb627f2536729dd2c6df55fbf31bf1aaf (diff)
downloadrust-mode-0a942686fde57bb0fe9b59c0148acdb67455eaaf.tar.gz
Merge pull request #307 from Bunogi/master
Add `await` to list of keywords
Diffstat (limited to 'rust-mode.el')
-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"