diff options
| author | Konstantin Kharlamov <Hi-Angel@users.noreply.github.com> | 2019-10-10 11:32:16 +0300 |
|---|---|---|
| committer | Nathan Moreau <nathan.moreau@m4x.org> | 2019-10-10 10:32:16 +0200 |
| commit | 74c264783e25166055a7871a00e4f68fe0495a0d (patch) | |
| tree | 7558eac4b51b14b6ad5f779cb6d418bee5feabca /rust-mode.el | |
| parent | 897af2444c0f7d8e7059632977402022c9b00ed9 (diff) | |
| download | rust-mode-74c264783e25166055a7871a00e4f68fe0495a0d.tar.gz | |
Highlight variable name in a for-loop (#326)
Signed-off-by: Konstantin Kharlamov <Hi-Angel@yandex.ru>
Diffstat (limited to 'rust-mode.el')
| -rw-r--r-- | rust-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust-mode.el b/rust-mode.el index cdc44e5..ec4f1c9 100644 --- a/rust-mode.el +++ b/rust-mode.el @@ -700,7 +700,7 @@ Returns nil if the point is not within a Rust string." (,rust-re-type-or-constructor 1 font-lock-type-face) ;; Type-inferred binding - (,(concat "\\_<\\(?:let\\s-+ref\\|let\\|ref\\)\\s-+\\(?:mut\\s-+\\)?" (rust-re-grab rust-re-ident) "\\_>") 1 font-lock-variable-name-face) + (,(concat "\\_<\\(?:let\\s-+ref\\|let\\|ref\\|for\\)\\s-+\\(?:mut\\s-+\\)?" (rust-re-grab rust-re-ident) "\\_>") 1 font-lock-variable-name-face) ;; Type names like `Foo::`, highlight excluding the :: (,(rust-path-font-lock-matcher rust-re-uc-ident) 1 font-lock-type-face) |
