-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
not sure about the readme diff, perhaps also because of line endings?!
- Loading branch information
1 parent
3e0cd8c
commit a6092ac
Showing
4 changed files
with
95 additions
and
58 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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text eol=crlf | ||
|
||
# Custom for Visual Studio | ||
*.cs diff=csharp | ||
*.sln merge=union | ||
*.csproj merge=union | ||
*.vbproj merge=union | ||
*.fsproj merge=union | ||
*.dbproj merge=union | ||
|
||
# Standard to msysgit | ||
*.doc diff=astextplain | ||
*.DOC diff=astextplain | ||
*.docx diff=astextplain | ||
*.DOCX diff=astextplain | ||
*.dot diff=astextplain | ||
*.DOT diff=astextplain | ||
*.pdf diff=astextplain | ||
*.PDF diff=astextplain | ||
*.rtf diff=astextplain | ||
*.RTF diff=astextplain |
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,14 @@ | ||
SublimeText package for Clarion | ||
=============================== | ||
|
||
v1.0.6 installed! | ||
|
||
Updates: | ||
-------- | ||
|
||
ADDED: text eol=crlf - force windows friendly line endings | ||
|
||
Support: | ||
-------- | ||
|
||
https://github.com/fushnisoft/SublimeClarion/issues |
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,57 +1,57 @@ | ||
# Installation | ||
|
||
## via Package Control | ||
|
||
> This is the recommended installation method. | ||
If you have Sublime Package Control, you should know what to do. [read about it here](http://wbond.net/sublime_packages/package_control). | ||
|
||
After installing the package and restarting the editor: | ||
|
||
* Open the Command Pallete (`ctrl+shift+P` or `cmd+shift+P`). | ||
* Type "Install Package" and hit return. | ||
* Type "Clarion" and hit return. | ||
|
||
------------------------ | ||
CompileCW.cmd usage | ||
|
||
Project->EditProject to open your <projName>.sublime-project | ||
and add the following, where you alter give the absolute path to YOUR .sln | ||
|
||
"build_systems": | ||
[ | ||
{ | ||
"name": "Clarion", | ||
|
||
//name your sublime-project the same as your .sln | ||
"cmd": [ | ||
"${packages}\\Clarion\\CompileCW.cmd", | ||
|
||
// What to build, convention is the same folder and basename as this sublime-project file, but with a .sln instead | ||
"${project/\\.sublime-project/\\.sln/}", | ||
//or hard code the absolute path to the sln, for example; // "c:\\HG\\TSI\\CW\\Est\\B47.sln", | ||
|
||
// Build Configuration typcially Debug|Release | ||
"Debug", | ||
// "Release", | ||
|
||
//CWRoot | ||
"C:\\SV\\Clarion8", | ||
|
||
//(Optional) CW_Ver, such as "8.0.9579" will default to current | ||
"" | ||
], | ||
|
||
//Appropriate for MSBuild in general | ||
//uses perl style regex: (maybe this) http://www.cs.tut.fi/~jkorpela/perl/regexp.html | ||
"file_regex": "^\\s*(.*)\\(([0-9]*),([0-9]*)" | ||
|
||
//"working_dir": "${project_path}:${folder}}", | ||
//"shell" : true, | ||
|
||
//Documentation on build systems: see http://docs.sublimetext.info/en/latest/reference/build_systems.html | ||
} | ||
] | ||
|
||
Then you can use CTRL+B or F7 to compile | ||
You can double click on error lines to navigate to the bug | ||
# Installation | ||
|
||
## via Package Control | ||
|
||
> This is the recommended installation method. | ||
If you have Sublime Package Control, you should know what to do. [read about it here](http://wbond.net/sublime_packages/package_control). | ||
|
||
After installing the package and restarting the editor: | ||
|
||
* Open the Command Pallete (`ctrl+shift+P` or `cmd+shift+P`). | ||
* Type "Install Package" and hit return. | ||
* Type "Clarion" and hit return. | ||
|
||
------------------------ | ||
CompileCW.cmd usage | ||
|
||
Project->EditProject to open your <projName>.sublime-project | ||
and add the following, where you alter give the absolute path to YOUR .sln | ||
|
||
"build_systems": | ||
[ | ||
{ | ||
"name": "Clarion", | ||
|
||
//name your sublime-project the same as your .sln | ||
"cmd": [ | ||
"${packages}\\Clarion\\CompileCW.cmd", | ||
|
||
// What to build, convention is the same folder and basename as this sublime-project file, but with a .sln instead | ||
"${project/\\.sublime-project/\\.sln/}", | ||
//or hard code the absolute path to the sln, for example; // "c:\\HG\\TSI\\CW\\Est\\B47.sln", | ||
|
||
// Build Configuration typcially Debug|Release | ||
"Debug", | ||
// "Release", | ||
|
||
//CWRoot | ||
"C:\\SV\\Clarion8", | ||
|
||
//(Optional) CW_Ver, such as "8.0.9579" will default to current | ||
"" | ||
], | ||
|
||
//Appropriate for MSBuild in general | ||
//uses perl style regex: (maybe this) http://www.cs.tut.fi/~jkorpela/perl/regexp.html | ||
"file_regex": "^\\s*(.*)\\(([0-9]*),([0-9]*)" | ||
|
||
//"working_dir": "${project_path}:${folder}}", | ||
//"shell" : true, | ||
|
||
//Documentation on build systems: see http://docs.sublimetext.info/en/latest/reference/build_systems.html | ||
} | ||
] | ||
|
||
Then you can use CTRL+B or F7 to compile | ||
You can double click on error lines to navigate to the bug |
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,5 +1,6 @@ | ||
{ | ||
"install": "Messages/install.txt", | ||
"1.0.4": "Messages/1.0.4.txt", | ||
"1.0.5": "Messages/1.0.5.txt" | ||
"1.0.5": "Messages/1.0.5.txt", | ||
"1.0.6": "Messages/1.0.6.txt" | ||
} |