-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2304a94
commit ad46e27
Showing
28 changed files
with
374 additions
and
193 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"prefix": "color black", | ||
"body": "echo \\$(tput setaf 0)\"${1:black text}\"\\$(tput sgr0)\n", | ||
"body": "echo \"\\$(tput setaf 0)\"${1:black text}\"\\$(tput sgr0)\"\n", | ||
"description": "write in black" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"prefix": "color blue", | ||
"body": "echo \\$(tput setaf 4)\"${1:blue text}\"\\$(tput sgr0)\n", | ||
"body": "echo \"\\$(tput setaf 4)\"${1:blue text}\"\\$(tput sgr0)\"\n", | ||
"description": "write in blue" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"prefix": "color cyan", | ||
"body": "echo \\$(tput setaf 6)\"${1:cyan text}\"\\$(tput sgr0)\n", | ||
"body": "echo \"\\$(tput setaf 6)\"${1:cyan text}\"\\$(tput sgr0)\"\n", | ||
"description": "write in cyan" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"prefix": "color green", | ||
"body": "echo \\$(tput setaf 2)\"${1:green text}\"\\$(tput sgr0)\n", | ||
"body": "echo \"\\$(tput setaf 2)\"${1:green text}\"\\$(tput sgr0)\"\n", | ||
"description": "write in green" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"prefix": "color magenta", | ||
"body": "echo \\$(tput setaf 5)\"${1:magenta text}\"\\$(tput sgr0)\n", | ||
"body": "echo \"\\$(tput setaf 5)\"${1:magenta text}\"\\$(tput sgr0)\"\n", | ||
"description": "write in magenta" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"prefix": "color red", | ||
"body": "echo \\$(tput setaf 1)\"${1:red text}\"\\$(tput sgr0)\n", | ||
"body": "echo \"\\$(tput setaf 1)\"${1:red text}\"\\$(tput sgr0)\"\n", | ||
"description": "write in red" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"prefix": "color white", | ||
"body": "echo \\$(tput setaf 7)\"${1:white text}\"\\$(tput sgr0)\n", | ||
"body": "echo \"\\$(tput setaf 7)\"${1:white text}\"\\$(tput sgr0)\"\n", | ||
"description": "write in white" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"prefix": "color yellow", | ||
"body": "echo \\$(tput setaf 3)\"${1:yellow text}\"\\$(tput sgr0)\n", | ||
"body": "echo \"\\$(tput setaf 3)\"${1:yellow text}\"\\$(tput sgr0)\"\n", | ||
"description": "write in yellow" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"prefix": "format bold", | ||
"body": "echo \\$(tput bold)\"${1:bold text}\"\\$(tput sgr0)\n", | ||
"body": "echo \"\\$(tput bold)\"${1:bold text}\"\\$(tput sgr0)\"\n", | ||
"description": "write in bold" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"prefix": "format dim", | ||
"body": "echo \\$(tput dim)\"${1:dimmed text}\"\\$(tput sgr0)\n", | ||
"body": "echo \"\\$(tput dim)\"${1:dimmed text}\"\\$(tput sgr0)\"\n", | ||
"description": "write in dim" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"prefix": "format italic", | ||
"body": "echo \\$(tput sitm)\"${1:italic text}\"\\$(tput sgr0)\n", | ||
"body": "echo \"\\$(tput sitm)\"${1:italic text}\"\\$(tput sgr0)\"\n", | ||
"description": "write in italic" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"prefix": "format reverse", | ||
"body": "echo \\$(tput rev)\"${1:reversed text}\"\\$(tput sgr0)\n", | ||
"body": "echo \"\\$(tput rev)\"${1:reversed text}\"\\$(tput sgr0)\"\n", | ||
"description": "write in reverse" | ||
} |
Oops, something went wrong.