-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
97 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,7 @@ | ||
# sublime | ||
# Epsilon Package for Sublime | ||
|
||
Package that extends the Sublime text editor with support for syntax highlighting languages of the [Eclipse Epsilon](https://eclipse.org/epsilon) platform, and [Emfatic](https://eclipse.org/emfatic). | ||
|
||
## Installation | ||
|
||
To install the package, download a copy of `Epsilon.sublime-package` from the Releases section and place it in your `Installed Packages` folder of your Sublime installation. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>fileTypes</key> | ||
<array> | ||
<string>flexmi</string> | ||
</array> | ||
<key>name</key> | ||
<string>Flexmi (XML)</string> | ||
<key>patterns</key> | ||
<array> | ||
<dict> | ||
<key>include</key> | ||
<string>text.xml</string> | ||
</dict> | ||
</array> | ||
<key>scopeName</key> | ||
<string>source.epsilon.flexmi</string> | ||
<key>uuid</key> | ||
<string>29DCE4DD-F5E1-4ED3-8847-64DA6B1F9165</string> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>fileTypes</key> | ||
<array> | ||
<string>flexmi</string> | ||
</array> | ||
<key>name</key> | ||
<string>Flexmi (YAML)</string> | ||
<key>patterns</key> | ||
<array> | ||
<dict> | ||
<key>include</key> | ||
<string>source.yaml</string> | ||
</dict> | ||
</array> | ||
<key>scopeName</key> | ||
<string>source.epsilon.flexmi.yaml</string> | ||
<key>uuid</key> | ||
<string>29DCE4DD-F5E1-4ED3-8847-64DA6B1F9165</string> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?nsuri psl?> | ||
<project title="ACME"> | ||
<person name="Alice"/> | ||
<person name="Bob"/> | ||
<task title="Analysis" start="1" dur="3"> | ||
<effort person="Alice"/> | ||
</task> | ||
<task title="Design" start="4" dur="6"> | ||
<effort person="Bob"/> | ||
</task> | ||
<task title="Implementation" start="7" dur="3"> | ||
<effort person="Bob" perc="50"/> | ||
<effort person="Alice" perc="50"/> | ||
</task> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
'?nsuri': psl | ||
project: { | ||
title: ACME, | ||
|
||
task: { | ||
name: Analysis, | ||
start: 1, dur: 3, | ||
effort: {person: Alice} | ||
}, | ||
|
||
task: { | ||
name: Design, | ||
start: 4, dur: 6, | ||
effort: {person: Bob, perc: 70}, | ||
effort: {person: Charlie, perc: 30} | ||
}, | ||
|
||
task: { | ||
name: Implementation, | ||
start: 7, dur: 3, | ||
effort: {person: Bob, perc: 40}, | ||
effort: {person: Alice, perc: 60} | ||
}, | ||
|
||
person: {name: Alice}, | ||
person: {name: Bob}, | ||
person: {name: Charlie} | ||
} |