Add: rust-mode: 1.19.0 introduced union (#198)

https://blog.rust-lang.org/2017/07/20/Rust-1.19.html
This commit is contained in:
Benjamin Andresen 2017-07-24 18:56:25 +02:00 committed by Andrea Crotti
parent 44b9d7a81e
commit 579b3fcadf

7
rust-mode/union Normal file
View file

@ -0,0 +1,7 @@
# -*- mode: snippet -*-
# name: union Type { ... }
# key: union
# --
union ${1:Type} {
$0
}