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