branch: elpa/rust-mode
commit fca71c642dfbbf546a6f867f14d940978e6fc16f
Author: Michael Zapata <[email protected]>
Commit: Michael Zapata <[email protected]>

    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 d5f1391..4151104 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"

Reply via email to