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