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