ctrl+shift+p filters: :st2 :st3 :win :osx :linux
浏览

Clarion

fushnisoft 全部

SublimeText 的 Clarion 包

标签 语言语法

详情

安装

  • 总数 457
  • Win 372
  • Mac 45
  • Linux 40
8月6日 8月5日 8月4日 8月3日 8月2日 8月1日 7月31日 7月30日 7月29日 7月28日 7月27日 7月26日 7月25日 7月24日 7月23日 7月22日 7月21日 7月20日 7月19日 7月18日 7月17日 7月16日 7月15日 7月14日 7月13日 7月12日 7月11日 7月10日 7月9日 7月8日 7月7日 7月6日 7月5日 7月4日 7月3日 7月2日 7月1日 6月30日 6月29日 6月28日 6月27日 6月26日 6月25日 6月24日 6月23日
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0

说明文档

源码
raw.​githubusercontent.​com

在 ClarionHub 上可进行讨论!

请阅读公告并加入 ClarionHub 上的讨论 ClarionHub

安装 - VSCode

通过市场安装 VSCode 扩展。

可以直接下载并手动安装,或者从 VSCode 内安装,详情请见入门页面

安装 - SublimeText

通过 Package Control

这是推荐的安装方法。

如果您有 Sublime Package Control,您应该知道该怎么做。 在这里了解它

安装包并重启编辑器后

  • 打开命令面板 (ctrl+shift+Pcmd+shift+P)。
  • 输入“安装包”并按回车。
  • 输入“Clarion”并按回车。

CompileCW.cmd 使用

项目->编辑项目以打开您的 .sublime-project 文件并添加以下内容,其中您需要修改为您的 .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
   }
]

然后您可以使用 CTRL+B 或 F7 来编译,双击错误行可以导航到错误位置