branch: elpa/rust-mode
commit eae291ab7b3e1a52e158261d1192ea1ca2b332f4
Merge: 9eda807 fca71c6
Author: Tom Tromey <[email protected]>
Commit: GitHub <[email protected]>

    Merge pull request #240 from michael-zapata/feat/add-yield-keyword
    
    feat(rust-mode): add yield to the keywords list
---
 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