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

ASP 代码段

Marcos Paulo 全部

ASP 代码段

详细信息

  • 2018.08.14.20.30.36
  • github.com
  • github.com
  • 6年前
  • 2小时前
  • 10年前

安装

  • 总数 7K
  • Win 6K
  • Mac 747
  • Linux 368
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 1 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0
Mac 1 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 1 0
Linux 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

说明文件

源代码
raw.githubusercontent.com

Sublime Text 的 ASP 代码段

安装

通过 软件包控制 安装,搜索 ASP 代码段。如果您在 Sublime Text 中还没有软件包控制,请获取它。它真的很棒。

如果您坚持不安装它,您可以下载该软件包并将其手动放入您的 软件包 目录中。它应该可以工作,但不会自动更新。

[if] if

if ${1:false} then
    ${2}
end if

[ife] if else

if ${1:false} then
    ${2}
else
    ${3}
end if

[dow] do while

do while ${1:false}
    ${2}
loop

[ifeif] if elseif

if ${1:false} then
    ${2}
elseif ${3:false} then
    ${4}
end if

[set] set

set ${1} = ${2}

[dim] dim

dim ${1} = ${2}

[rw] response.write

response.write ${1}

[rr] response.redirect

response.redirect "${1}"

[rc] response.clear

response.clear

[re] response.end

response.end

[rqs] request.querystring

request.querystring("${1}")

[rqf] request.form

request.form("${1}")

[for] for

for ${1:i = 0} to ${2}
    ${3}
next

[fore] for each

for each ${1:var} in ${2}
    ${3}
next

[class] class

class ${1}
    private sub class_initialize
        ${2}
    end sub
    ${3}
end class

[proplet] public property let

public property let ${1}(${2})
    ${3}
end property

[propget] public property get

public property get ${1}()
    ${2}
end property

[propset] public property set

public property set ${1}(${2})
    ${3}
end property

[sub] sub

sub ${1}(${2})
    ${3}
end sub

[pubs] public sub

public sub ${1}(${2})
    ${3}
end sub

[psub] private sub

private sub ${1}(${2})
    ${3}
end sub

[func] function

function ${1}(${2})
    ${3}
end function

[pubf] public function

public function ${1}(${2})
    ${3}
end function

[pfunc] private function

private function ${1}(${2})
    ${3}
end function

贡献

  1. 叉取它!
  2. 创建你的功能分支: git checkout -b my-new-feature
  3. 提交你的更改: git commit -m 'Add some feature'
  4. 推送到分支: git push origin my-new-feature
  5. 提交一个拉取请求 :D

历史

查看 发布 列表。

许可协议

MIT 协议 © Marcos Paulo