Skip to content

Commit 6f0b2ed

Browse files
committed
First Stable Release
This is the first release that adds all the snippets, files, folders, examples etc.
1 parent ad34aa7 commit 6f0b2ed

File tree

13 files changed

+200
-2
lines changed

13 files changed

+200
-2
lines changed

.vscode/launch.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// A launch configuration that launches the extension inside a new window
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
{
6+
"version": "0.2.0",
7+
"configurations": [
8+
{
9+
"name": "Extension",
10+
"type": "extensionHost",
11+
"request": "launch",
12+
"args": [
13+
"--extensionDevelopmentPath=${workspaceFolder}"
14+
]
15+
}
16+
]
17+
}

.vscode/settings.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"cSpell.words": [
3+
"ahtp",
4+
"cgcmd",
5+
"cgevt",
6+
"dpstrt"
7+
]
8+
}

.vscodeignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.vscode/**
2+
.vscode-test/**
3+
.gitignore
4+
.gitattributes
5+
vsc-extension-quickstart.md

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Change Log
2+
3+
All notable changes to the "discord-py-snippets" extension will be documented in this file.
4+
5+
## [1.0.0]
6+
7+
- Initial release of discord.py-snippets extension

README.md

Lines changed: 53 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,53 @@
1-
# vscode-discord.py-snippets
2-
Code snippets for the discord.py library in python
1+
2+
# discord-py-snippets README
3+
4+
# What is discord-py-snippets
5+
6+
A simple snippets extension for the [discord.py]("https://discordpy.readthedocs.io/en/latest/") package for [python]("https://www.python.org")
7+
8+
## Features
9+
10+
### Making a cog
11+
12+
![Cog Example]("https://i.imgur.com/gIWNM5E.gif")
13+
14+
### Making a command
15+
16+
![Command Example]("https://i.imgur.com/jUQZywQ.gif")
17+
18+
### Starter Template
19+
20+
![Starter Example]("https://i.imgur.com/AcoHPfb.gif")
21+
22+
### Making a event
23+
24+
![Event Example]("https://i.imgur.com/waHtA9I.gif")
25+
26+
### Using the library aiohttp to use a api in a command
27+
28+
![AioHTTP Example]("https://i.imgur.com/LVZVq33.gif")
29+
30+
<!-- ## Extension Settings
31+
32+
Include if your extension adds any VS Code settings through the `contributes.configuration` extension point.
33+
34+
For example:
35+
36+
This extension contributes the following settings:
37+
38+
* `myExtension.enable`: enable/disable this extension
39+
* `myExtension.thing`: set to `blah` to do something -->
40+
41+
## Known Issues
42+
43+
There isn't many snippets so any suggestions for snippets would be appreciated
44+
45+
## Release Notes
46+
47+
### 1.0.0
48+
49+
Initial release of discord.py-snippets
50+
51+
-----------------------------------------------------------------------------------------------------------
52+
53+
**Enjoy!**

examples/aiohttp_example.gif

122 KB
Loading

examples/cog_example.gif

113 KB
Loading

examples/command_example.gif

61.8 KB
Loading

examples/event_example.gif

172 KB
Loading

examples/starter_example.gif

35.4 KB
Loading

0 commit comments

Comments
 (0)