From 59615a539c4cf24264fc62026cc383c123f06c36 Mon Sep 17 00:00:00 2001 From: jdhao Date: Sat, 30 Oct 2021 23:55:29 +0800 Subject: [PATCH] remove redundant snippets --- my_snippets/cpp.snippets | 21 --------------------- 1 file changed, 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