summaryrefslogtreecommitdiff
path: root/.emacs.d/snippets/rust-mode/match
blob: 9dc802f1130585db44a1dcbd96ce635524e58e2b (plain)
1
2
3
4
5
6
7
# -*- mode: snippet -*-
# name: match expression { ... }
# key: match
# --
match ${1:expression} {
    $0
}