From fca71c642dfbbf546a6f867f14d940978e6fc16f Mon Sep 17 00:00:00 2001 From: Michael Zapata Date: Thu, 21 Sep 2017 13:23:29 +1200 Subject: [PATCH] feat(rust-mode): add yield to the keywords list Enables syntax highlighting --- rust-mode.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rust-mode.el b/rust-mode.el index d5f1391a..4151104b 100644 --- a/rust-mode.el +++ b/rust-mode.el @@ -537,7 +537,8 @@ buffer." "true" "trait" "type" "use" "virtual" - "where" "while")) + "where" "while" + "yield")) (defconst rust-special-types '("u8" "i8"