Skip to content

Commit

Permalink
auto merge of #18793 : swgillespie/rust/master, r=alexcrichton
Browse files Browse the repository at this point in the history
I noticed today that `move` wasn't getting highlighted in my editor of choice (emacs), so I went ahead and added it as a keyword in the emacs, vim, and kate editor files. Apparently it has already been done for gedit.
  • Loading branch information
bors committed Nov 11, 2014
2 parents 8f87538 + 27774e8 commit 351f7af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/etc/emacs/rust-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@
"false" "fn" "for"
"if" "impl" "in"
"let" "loop"
"match" "mod" "mut"
"match" "mod" "move" "mut"
"priv" "proc" "pub"
"ref" "return"
"self" "static" "struct" "super"
Expand Down
1 change: 1 addition & 0 deletions src/etc/kate/rust.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
<item> loop </item>
<item> match </item>
<item> mod </item>
<item> move </item>
<item> mut </item>
<item> priv </item>
<item> pub </item>
Expand Down

0 comments on commit 351f7af

Please sign in to comment.