Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
dennykorsukewitz committed Nov 22, 2023
1 parent 367b781 commit d2ff498
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,24 +24,24 @@ So i created this yeoman generator to easy get an scaffold for a sublime-package

The following files can be created.

| Generator | Files | Function |
|:------------|:-------------------------------|:---|
| app | .gitattributes | |
| | .gitignore | |
| | messages/changelog.txt | |
| | messages/install.txt | |
| | messages/version.txt | |
| | messages.json | |
| commands | TODO | |
| keymap | TODO | |
| macros | TODO | |
| menu | TODO | |
| plugin | SublimePackage.py | |
| | SublimePackage.sublime-settings | |
| preferences | TODO | |
| readme | README.md | |
| settings | TODO | |
| snippets | TODO | |
| Generator | Files | Function |
|:------------|:--------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| app | .gitattributes | A gitattributes file is a simple text file that gives attributes to pathnames. |
| | .gitignore | A gitignore file specifies intentionally untracked files that Git should ignore. |
| | messages/changelog.txt | All notable changes to your new package will be documented in this file. |
| | messages/install.txt | When a package is installed, if the key install is present in the messages.json file, the value will be used as the file path to a txt file containing a message to display the user. |
| | messages/version.txt | When a package is upgraded, Package Control looks through each key in the messages.json file sand shows the content of the text file that is a value of any key that is higher than the previous version of the package the user has installed. |
| | messages.json | Messaging is controlled by a file named messages.json in the root of the package. |
| commands | SublimePackage.sublime-commands | Creates a SublimePackage.sublime-commands file to register your new command / plugin for the Command Palette. |
| keymap | TODO | TODO |
| macros | TODO | TODO |
| menu | TODO | TODO |
| plugin | SublimePackage.py | TODO |
| | SublimePackage.sublime-settings | TODO |
| preferences | TODO | TODO |
| readme | README.md | A README is often the first item a visitor will see when visiting your repository. |
| settings | SublimePackage.sublime-settings | TODO |
| snippets | TODO | TODO |

---

Expand Down

0 comments on commit d2ff498

Please sign in to comment.