-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from AsterAI/phalcon_syntax
Fix Zephir syntax
- Loading branch information
Showing
6 changed files
with
89 additions
and
62 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,7 +1,7 @@ | ||
<idea-plugin url="https://github.com/zephir-lang/idea-plugin"> | ||
<id>com.zephir</id> | ||
<name>Zephir</name> | ||
<version>0.3.0</version> | ||
<version>0.3.1</version> | ||
<vendor email="[email protected]" url="http://zephir-lang.com">Zephir Team</vendor> | ||
|
||
<description><![CDATA[ | ||
|
@@ -12,7 +12,8 @@ | |
]]></description> | ||
|
||
<change-notes><![CDATA[ | ||
<li><b>0.3.0</b>: Fixed many bugs with syntax recognition, added few words to highlight, improved completion</li> | ||
<li><b>0.3.1</b>: Fixed much bugs with syntax recognition, fixed extra space in completion for method params</li> | ||
<li><b>0.3.0</b>: Fixed many bugs with syntax recognition, added few words to highlight, improved completion</li> | ||
<li><b>0.2.5</b>: Fixed "switch" keyword detection</li> | ||
<li><b>0.2.4</b>: Added brace matching</li> | ||
<li><b>0.2.3</b>: Fixed build</li> | ||
|
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,10 @@ | ||
package com.zephir.completion; | ||
|
||
/** | ||
* Completion priority | ||
*/ | ||
public class Priority { | ||
|
||
public static double METHOD_SCOPE_PRIORITY = 2.0; | ||
|
||
} |
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