Skip to content

Commit

Permalink
added text eol=crlf
Browse files Browse the repository at this point in the history
not sure about the readme diff, perhaps also because of line endings?!
  • Loading branch information
fushnisoft committed Dec 11, 2013
1 parent 3e0cd8c commit a6092ac
Show file tree
Hide file tree
Showing 4 changed files with 95 additions and 58 deletions.
22 changes: 22 additions & 0 deletions .gitattributes
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
14 changes: 14 additions & 0 deletions Messages/1.0.6.txt
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
114 changes: 57 additions & 57 deletions README.md
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
3 changes: 2 additions & 1 deletion messages.json
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"
}

0 comments on commit a6092ac

Please sign in to comment.