diff options
| author | Tom Tromey <tom@tromey.com> | 2017-09-20 20:19:52 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-09-20 20:19:52 -0600 |
| commit | eae291ab7b3e1a52e158261d1192ea1ca2b332f4 (patch) | |
| tree | 12ee4f355130e0593115956d3e4302f0cece1db4 /rust-mode.el | |
| parent | 9eda80769167fe434ca90fe367dd7b9f1016ef3c (diff) | |
| parent | fca71c642dfbbf546a6f867f14d940978e6fc16f (diff) | |
| download | rust-mode-eae291ab7b3e1a52e158261d1192ea1ca2b332f4.tar.gz | |
Merge pull request #240 from michael-zapata/feat/add-yield-keyword
feat(rust-mode): add yield to the keywords list
Diffstat (limited to 'rust-mode.el')
| -rw-r--r-- | rust-mode.el | 3 |
1 files changed, 2 insertions, 1 deletions
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" |
