From 6bdf6db3b453cff3a3f46f1b8f33cac6426f98ac Mon Sep 17 00:00:00 2001 From: dx Date: Wed, 15 Jul 2020 15:56:08 +0100 Subject: ~~/.doom.d -> ~/.config/doom --- Doom/.doom.d/snippets/csharp-mode/class ... { ... } | 9 --------- Doom/.doom.d/snippets/csharp-mode/foreach | 9 --------- Doom/.doom.d/snippets/csharp-mode/method | 8 -------- Doom/.doom.d/snippets/csharp-mode/params | 6 ------ Doom/.doom.d/snippets/csharp-mode/prop | 6 ------ Doom/.doom.d/snippets/csharp-mode/returns | 5 ----- 6 files changed, 43 deletions(-) delete mode 100644 Doom/.doom.d/snippets/csharp-mode/class ... { ... } delete mode 100644 Doom/.doom.d/snippets/csharp-mode/foreach delete mode 100644 Doom/.doom.d/snippets/csharp-mode/method delete mode 100644 Doom/.doom.d/snippets/csharp-mode/params delete mode 100644 Doom/.doom.d/snippets/csharp-mode/prop delete mode 100644 Doom/.doom.d/snippets/csharp-mode/returns (limited to 'Doom/.doom.d/snippets/csharp-mode') diff --git a/Doom/.doom.d/snippets/csharp-mode/class ... { ... } b/Doom/.doom.d/snippets/csharp-mode/class ... { ... } deleted file mode 100644 index 5e96938..0000000 --- a/Doom/.doom.d/snippets/csharp-mode/class ... { ... } +++ /dev/null @@ -1,9 +0,0 @@ -# -*- mode: snippet -*- -# name: class ... { ... } -# key: class -# -- - -${1:public} class ${2:Name} -{ - $0 -} diff --git a/Doom/.doom.d/snippets/csharp-mode/foreach b/Doom/.doom.d/snippets/csharp-mode/foreach deleted file mode 100644 index 220fcd9..0000000 --- a/Doom/.doom.d/snippets/csharp-mode/foreach +++ /dev/null @@ -1,9 +0,0 @@ -# -*- mode: snippet -*- -# name: Foreach loop -# key: foreach -# condition: t -# -- -foreach (${1:var} ${2:i} in ${3:collection}) -{ - $0 -} diff --git a/Doom/.doom.d/snippets/csharp-mode/method b/Doom/.doom.d/snippets/csharp-mode/method deleted file mode 100644 index a2aaf6b..0000000 --- a/Doom/.doom.d/snippets/csharp-mode/method +++ /dev/null @@ -1,8 +0,0 @@ -# -*- mode: snippet -*- -# name: public void Method { ... } -# key: method -# -- -${1:public} ${2:void} ${3:Method}(${4:int x}) -{ - ${0:return x;} -} diff --git a/Doom/.doom.d/snippets/csharp-mode/params b/Doom/.doom.d/snippets/csharp-mode/params deleted file mode 100644 index b781710..0000000 --- a/Doom/.doom.d/snippets/csharp-mode/params +++ /dev/null @@ -1,6 +0,0 @@ -# -*- mode: snippet -*- -# name: /// ... -# key: comment -# -- - -/// $0 \ No newline at end of file diff --git a/Doom/.doom.d/snippets/csharp-mode/prop b/Doom/.doom.d/snippets/csharp-mode/prop deleted file mode 100644 index eb2969e..0000000 --- a/Doom/.doom.d/snippets/csharp-mode/prop +++ /dev/null @@ -1,6 +0,0 @@ -# -*- mode: snippet -*- -# name: property ... ... { ... } -# key: prop -# condition: t -# -- -public ${1:int} ${2:property} { get; set; }$0 \ No newline at end of file diff --git a/Doom/.doom.d/snippets/csharp-mode/returns b/Doom/.doom.d/snippets/csharp-mode/returns deleted file mode 100644 index dee5e8d..0000000 --- a/Doom/.doom.d/snippets/csharp-mode/returns +++ /dev/null @@ -1,5 +0,0 @@ -# -*- mode: snippet -*- -# name: /// ... -# key: comment -# -- -/// $0 \ No newline at end of file -- cgit v1.2.3-13-gbd6f