Files
dotfiles/Doom/.doom.d/snippets/csharp-mode/method
dx c65cf688fc ~doom.d -> Doom/.doom.d
Proper naming, GNU/Stow style.
2020-05-05 02:59:45 +01:00

9 lines
147 B
Plaintext

# -*- mode: snippet -*-
# name: public void Method { ... }
# key: method
# --
${1:public} ${2:void} ${3:Method}(${4:int x})
{
${0:return x;}
}