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

Whiley

作者: Whiley ST3

TextMate的Whiley插件

详细信息

  • 1.0.0
  • github.com
  • github.com
  • 2年前
  • 36分钟前
  • 2年前

安装次数

  • 总数 19
  • Win 10
  • Mac 6
  • Linux 3
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 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
Mac 1 1 0 0 0 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 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 0 0 0 0 0 0

README

源码
raw.githubusercontent.com

WhileySyntaxBundle

此提供TextMate和Sublime插件,以实现对用 Whiley 编写的程序的语法高亮。这同时作为Whiley的语法,并且也为github/linguist(在Github上实现语法高亮)提供语法。

以下是一个Whiley程序示例:

错误:不支持语言“whiley”
type nat is (int x) where x >= 0

function indexOf(int[] items, int item) -> (int r)
// If valid index returned, element matches item
ensures r >= 0 ==> items[r] == item
// If invalid index return, no element matches item
ensures r <  0 ==> all { i in 0..|items| | items[i] != item }
// Return value is between -1 and size of items
ensures r >= -1 && r < |items|:
    //
    nat i = 0
    while i < |items|
        where all { k in 0 .. i | items[k] != item }:
        //    
        if items[i] == item:
            return i
        i = i + 1
    //
    return -1

安装(Sublime Text)

最终您将通过PackageControl进行安装。目前,您可以将whiley.sublime-text文件复制到.config/sublime-text/Packages/User中。

安装(TextMate)

mkdir -p ~/Library/Application\ Support/TextMate/Bundles
cd ~/Library/Application\ Support/TextMate/Bundles
git clone git://github.com/Whiley/WhileySyntaxBundle Whiley.tmbundle

开发者

唯一的真实源是文件Syntaxes/whiley.YAML-tmLanguage。该文件被用来生成其余文件

  • whiley.tmLanguage。该文件是由安装PackageDev,然后在whiley.YAML-tmLanguage上运行Tools > Build并选择Convert to: Property List生成的。

  • whiley.sublime-text文件。该文件是通过选择文件whiley.tmLanguage并运行Tools > Developer > New Syntax from whiley.tmLanguage ...生成的。