Skip to content

Commit

Permalink
First Ready Version
Browse files Browse the repository at this point in the history
  • Loading branch information
anish137i committed Jun 12, 2017
0 parents commit 28a2447
Show file tree
Hide file tree
Showing 8 changed files with 593 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// A launch configuration that launches the extension inside a new window
{
"version": "0.1.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ]
}
]
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Change Log
All notable changes to the "ci-snippets2" extension will be documented in this file.

Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.

## [Unreleased]
- Initial release
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# CodeIgniter Snippets

This is a collection of snippets for the `CodeIgniter PHP Framework.`

Upgrated from ci-snippets created by secato for visual studio code.


-----------------------------------------------------------------------------------------------------------

### Special Thanks

* secato: For orignal ci-snippets.


**Enjoy!**
Binary file added ci-snippets2-0.0.1.vsix
Binary file not shown.
Binary file added cilogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 35 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"name": "ci-snippets2",
"displayName": "ci-snippets2",
"description": "Ths is a collection of snippets for the CodeIgniter PHP Framework.",
"version": "0.0.1",
"publisher": "Anish-M",
"engines": {
"vscode": "^1.12.0"
},
"bugs":{
"email": "contact@anishmandal.in"
},
"keywords": [
"PHP",
"CI",
"CodeIgniter",
"Framework"
],
"categories": [
"Snippets"
],
"icon": "cilogo.png",
"galleryBanner": {
"color": "#dd5106",
"theme": "dark"
},
"contributes": {
"snippets": [
{
"language": "php",
"path": "./snippets/snippets.json"
}
]
}
}
Loading

0 comments on commit 28a2447

Please sign in to comment.