| major | minor | patch |
|---|---|---|
| 1 | 2 | 3 |
major: incompatible API changes
| // icons | |
| // type item loop | |
| $list: | |
| test list, | |
| article file-text-o, | |
| video film, | |
| pdf file-pdf-o, | |
| link link, | |
| audio volume-up; |
| import datetime, getpass | |
| import sublime, sublime_plugin | |
| class Comments_cssCommand(sublime_plugin.TextCommand): | |
| def run(self, edit): | |
| comment = "/** \n * Name: Component \n * \n * Created: %s \n * Author: Raúl Hernández M. <[email protected]> \n */ \n\n" % (datetime.datetime.now().strftime("%Y-%m-%d %H:%M")) | |
| self.view.insert(edit, 0, comment) |
| // ---- | |
| // libsass (v3.2.5) | |
| // ---- | |
| $themes: ( | |
| red: ( | |
| background: red, | |
| color: white | |
| ), | |
| blue: ( |