Skip to content

Commit d017496

Browse files
version up: 0.5.4
1 parent 9974228 commit d017496

8 files changed

+66
-41
lines changed

.github/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Toit syntax highlighter: [change log][1]
2+
3+
This file is a countdown of those changes that occurred during the writing of this project.
4+
5+
#### v0.5.4
6+
7+
- Created [editor config][2] file
8+
- Created .gitignore, for python settings, etc...
9+
- Created [syntax test][3]
10+
- Created [comment][4]
11+
- Created .gitattributes
12+
13+
14+
[1]: https://github.com/snxx-lppxx/toit-sublime/blob/master/.github/CHANGELOG.md
15+
[2]: https://github.com/snxx-lppxx/toit-sublime/blob/master/.editorconfig
16+
[3]: https://github.com/snxx-lppxx/toit-sublime/blob/master/tests/syntax_test.toit
17+
[4]: https://github.com/snxx-lppxx/toit-sublime/blob/master/Comments.tmPreferences

.github/CODE_STYLE.rst

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
========================
2+
Toit-Sublime: Code Style
3+
========================
4+
5+
Take a look at the given file: `editor config <https://github.com/snxx-lppxx/toit-sublime/blob/develop/.editorconfig>`_,
6+
there is up-to-date information about document settings.

.github/CONTRIBUTING.rst

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
====================================
2+
Toit-Sublime: Contributor Guidelines
3+
====================================
4+
5+
Before contributing, please read our `code style <https://github.com/snxx-lppxx/toit-sublime/blob/develop/.github/CODE_STYLE.rst>`_
6+
and the `license <https://github.com/snxx-lppxx/toit-sublime/blob/master/LICENSE>`_.
7+
To change the source code,
8+
fork the ``develop`` branch of this repository and work inside your own branch.
9+
Then send us a PR into ``develop`` branch and wait for the CI to check everything. However, you'd better check changes first locally.
10+
11+
Do not forget to fill in `change log <https://github.com/snxx-lppxx/toit-sublime/blob/develop/.github/CHANGELOG.md>`_,
12+
the maintainers of the project will check the changes and, if the description is correct, they will add your changes to the project.
13+
14+
To report a bug, suggest new functionality,
15+
or ask a question, go to `issues <https://github.com/snxx-lppxx/toit-sublime/issues>`_.
16+
Try to make Minimal Reproducible Example (MRE)
17+
and specify your `toit-sublime version <https://github.com/snxx-lppxx/toit-sublime/releases>`_ to let others help you.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ You can download using the following commands:
55
```sh
66
$ git clone https://github.com/snxx-lppxx/toit-sublime.git
77
$ cd toit-sublime
8-
$ xcopy /y /o /e ".\toit-sublime" "%AppData%\Sublime_Text_3\Packages\User\toit-sublime"
8+
$ xcopy /y /o /e ".\toit-sublime" "%AppData%\Sublime_Text_3\Packages\Toit"
99
```
1010

1111
You can test the `test-version` of the file:
1212

1313
```sh
14-
$ toit run --no-divice ./tests/syntax_test.toit
14+
$ toit run --no-divice ./test/syntax_test.toit
1515
```
1616

1717
## Licensed Agreement of Author with Recipients

Toit.sublime-syntax

+1-35
Original file line numberDiff line numberDiff line change
@@ -8,38 +8,4 @@ extends: Packages/Toit/Toit.sublime-syntax
88

99
contexts:
1010
main:
11-
- match: \b([a-z0-9_]+)\b
12-
scope: keyword
13-
push:
14-
- function
15-
- function-name
16-
- control
17-
- string
18-
- match: \b(import|export)\b
19-
captures:
20-
1: keyword.control.import.include.toit
21-
- match: \b(print)\b
22-
scope: support.fucntion.toit
23-
constants:
24-
- match: \b(true|false|null)\b
25-
- scope: constant.language.toit
26-
27-
function:
28-
- meta_scope: meta.function
29-
30-
function-name:
31-
- match: '[a-z0-9_]+'
32-
scope: variable.function
33-
- match: \:
34-
35-
control:
36-
- match: \b(if|else|for|while|do)\b
37-
scope: keyword.control.toit
38-
39-
string:
40-
- match: '"'
41-
- meta_scope: string.quoted.double.toit
42-
- match: \\.
43-
scope: constant.character.escape.toit
44-
- match: '"'
45-
pop: true
11+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
The file will be replaced with two pictures in png format.

setup.py

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#!/usr/bin/env python
2+
# -*- coding: utf-8 -*-
3+
#
4+
# :Author: snxx
5+
# :Copyright: (c) 2021 snxx
6+
# For license and copyright information please follow this like:
7+
# https://github.com/snxx-lppxx/toit-sublime/blob/master/LICENSE
8+
''' GitHub: snxx-lppxx/toit-sublime '''
9+
10+
from .script import *
11+
12+
import os, sys, json
13+
import sublime
14+
import sublime_plugin
15+
16+
17+
if sys.version_info < (3, 3):
18+
raise RuntimeError("Toit syntax works with (only) Sublime Text 3")
19+
20+
def plugin_loaded():
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
/**
2-
* SYNTAX TEST "Toit.sublime-syntax"
3-
*/
1+
// SYNTAX TEST "Toit.sublime-syntax"
42
53
main:
64
print "Toit Syntax Version: v1.0.0"
7-
print "[28.11.2021]"
5+
print "[23.11.2021]"
86
print "GitHub: snxx-lppxx / toit-sublime"

0 commit comments

Comments
 (0)