~doom.d -> Doom/.doom.d

Proper naming, GNU/Stow style.
This commit is contained in:
dx
2020-04-24 02:53:57 +01:00
parent e3e4bd9710
commit c65cf688fc
31 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
# -*- mode: snippet -*-
# name: class ... { ... }
# key: class
# --
${1:public} class ${2:Name}
{
$0
}

View File

@@ -0,0 +1,9 @@
# -*- mode: snippet -*-
# name: Foreach loop
# key: foreach
# condition: t
# --
foreach (${1:var} ${2:i} in ${3:collection})
{
$0
}

View File

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

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# name: /// <param>...</param>
# key: comment
# --
/// <param name="$1">$0</param>

View File

@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# name: property ... ... { ... }
# key: prop
# condition: t
# --
public ${1:int} ${2:property} { get; set; }$0

View File

@@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: /// <returns>...</returns>
# key: comment
# --
/// <returns>$0</returns>