It is my my visual tutorial for Sublime Text. It is intuitive. I hope that you can understand plugin development just in one sight.
Is there some tutorials like this one, that are intuitive for the beginners?
It is my my visual tutorial for Sublime Text. It is intuitive. I hope that you can understand plugin development just in one sight.
Is there some tutorials like this one, that are intuitive for the beginners?
I’ve written over 500 Lua tutorials, but not like this in the image and I am working on porting some of them over to Python along with creating new ones…
A few things have been missed if you’re going for Python / Sublime Text Plugin Development…
To call the BasicCommand you’d convert it to lowercase: basic_command
I’d highly recommend avoiding spaces when coding Python, here’s why:
I’d recommend figuring out a coding style to use and sticking with it. PErsonally, I use 3 comment lines above classes / functions with the center being where the important info is, airy brackets ( ie this, for, args, etc… )[ and ][ this, etc… ] along with test = x; instead of together.
If you’re interested in learning Python, I’d recommend reading code, setting goals, and working towards them.
As for images like this to ‘teach’, some may be interesting and useful, but I’d envision seeing this as more useful for Sublime Text - for instance, Sheet, View, etc… has nothing to do with Python really and more to do with Sublime wordage, class-names / objects used to describe areas of the program. – While it can be useful to know, it’s much more helpful to know about the objects and what they do instead of simply their locations.
ie some interesting issues: https://www.dropbox.com/s/glr9him0sb2x853/func_args_initializing_-_arg_init_is_reused_instead_of_being_new_each_time.py?dl=0
I plan on updating these some more, and adding even more.