Skip to content

Commit

Permalink
Merge pull request #373 from Sawyer47/rust-fix
Browse files Browse the repository at this point in the history
Rust: fixes and one new snippet.
  • Loading branch information
SirVer committed Jun 1, 2014
2 parents c3db5be + b0733ed commit 45bcd32
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions UltiSnips/rust.snippets
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,12 @@ snippet feat "#![feature(..)]" b
#![feature(${1:macro_rules})]
endsnippet

snippet der "#![deriving(..)]" b
#![deriving(${1:Show})]
snippet der "#[deriving(..)]" b
#[deriving(${1:Show})]
endsnippet

snippet attr "#[..]" b
#[${1:inline}]
endsnippet

snippet opt "Option<..>"
Expand Down

0 comments on commit 45bcd32

Please sign in to comment.