summaryrefslogtreecommitdiff
path: root/.emacs.d/snippets/rust-mode/impl
diff options
context:
space:
mode:
Diffstat (limited to '.emacs.d/snippets/rust-mode/impl')
-rw-r--r--.emacs.d/snippets/rust-mode/impl7
1 files changed, 7 insertions, 0 deletions
diff --git a/.emacs.d/snippets/rust-mode/impl b/.emacs.d/snippets/rust-mode/impl
new file mode 100644
index 0000000..14bb06f
--- /dev/null
+++ b/.emacs.d/snippets/rust-mode/impl
@@ -0,0 +1,7 @@
1# -*- mode: snippet -*-
2# name: impl Type { ... }
3# key: impl
4# --
5impl ${1:Type} {
6 $0
7}