First Plugin !

After a long engagement with the basic plugin that Sublime Text 3 makes for us using tool->developer->new plugin, and a bit of help from my brother and the internet, I have learned a few important things: 1. We need to open a new folder where all the plugin files will be saved. The folder must be placed in the following path: C:\Users\USERNAME\AppData\Roaming\Sublime Text 3\Packages Notice not to create it in: C:\Users\USERNAME\AppData\Roaming\Sublime Text 3\Packages\User Because the plugin would not work (this was one of my big my issues). 2. The plugin, which looks like this: .We need to save into the folder we created in (1) with the extension .py This basic plugin is supposed to insert the "Hello, world!" string to the beginning of the file we are currently "standing" on while we executed the run command, w...