aboutsummaryrefslogtreecommitdiff
path: root/my_snippets
diff options
context:
space:
mode:
authorjdhao <jdhao@hotmail.com>2021-10-30 23:55:29 +0800
committerjdhao <jdhao@hotmail.com>2021-10-30 23:55:29 +0800
commit59615a539c4cf24264fc62026cc383c123f06c36 (patch)
tree3a259221010bce1350cdd70da125c3d5dbe36196 /my_snippets
parent601a13acb1f075729144091a859dc0f1a0c2d19e (diff)
remove redundant snippets
Diffstat (limited to 'my_snippets')
-rw-r--r--my_snippets/cpp.snippets21
1 files changed, 0 insertions, 21 deletions
diff --git a/my_snippets/cpp.snippets b/my_snippets/cpp.snippets
index 3e2f196..7b474f3 100644
--- a/my_snippets/cpp.snippets
+++ b/my_snippets/cpp.snippets
@@ -169,24 +169,3 @@ if ($1){
}
endsnippet
-
-snippet for "for loop" w
-for ($1; $2; $3){
- $4
-}
-endsnippet
-
-snippet if "if condition" w
-if ($1){
- $2
-}
-$0
-endsnippet
-
-snippet ifelse "if else condition"
-if ($1){
- $2
-}else{
-
-}
-endsnippet