aboutsummaryrefslogtreecommitdiff
path: root/doom.d/snippets/csharp-mode/method
diff options
context:
space:
mode:
authororeodave <aryadevchavali1@gmail.com>2019-11-25 14:23:50 +0000
committeroreodave <aryadevchavali1@gmail.com>2019-11-25 14:23:50 +0000
commit0ffa96870f7bfe594807adf92430c11a71f1c3fb (patch)
treef32f28526a71b959dabf80920418a7310e9a85dd /doom.d/snippets/csharp-mode/method
parente3034c639b1c8819cf6476d1efdb8932270970dc (diff)
downloaddotfiles-0ffa96870f7bfe594807adf92430c11a71f1c3fb.tar.gz
dotfiles-0ffa96870f7bfe594807adf92430c11a71f1c3fb.tar.bz2
dotfiles-0ffa96870f7bfe594807adf92430c11a71f1c3fb.zip
+snippets
Diffstat (limited to 'doom.d/snippets/csharp-mode/method')
-rw-r--r--doom.d/snippets/csharp-mode/method8
1 files changed, 8 insertions, 0 deletions
diff --git a/doom.d/snippets/csharp-mode/method b/doom.d/snippets/csharp-mode/method
new file mode 100644
index 0000000..a2aaf6b
--- /dev/null
+++ b/doom.d/snippets/csharp-mode/method
@@ -0,0 +1,8 @@
+# -*- mode: snippet -*-
+# name: public void Method { ... }
+# key: method
+# --
+${1:public} ${2:void} ${3:Method}(${4:int x})
+{
+ ${0:return x;}
+}