1
0
mirror of https://github.com/amix/vimrc synced 2025-07-06 16:05:01 +08:00

Revert "Merge from original repo"

This commit is contained in:
Jaeguk Hyun
2022-09-25 19:10:28 +09:00
committed by GitHub
parent 00c59fa5e1
commit 1d193551ef
122 changed files with 371 additions and 5171 deletions

View File

@ -43,13 +43,13 @@ snippet enum
# PowerShell if..then
snippet if
if ($1) {
$0
if (${1:condition}) {
${2:statement}
}
# PowerShell if..else
snippet ife
if ( $1 ) {
if ( ${1:condition} ) {
${2}
}
else {
@ -58,8 +58,8 @@ snippet ife
# PowerShell While Loop
snippet while
while ($1) {
$0
while (${1:condition}) {
${2:statement}
}
# PowerShell Filter..Sort
@ -69,7 +69,7 @@ snippet filtersort
# PowerShell foreach
snippet foreach
foreach ( $${1:iterator} in $${2:collection} ) {
$0
${3:statement}
}
# PowerShell export-csv