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

成语-CSS-注释-片段

chrisborrowdale 全部

Sublime Text 的 CSS 和 Sass 风格注释

标签 片段

详细信息

  • 2015.10.22.07.46.38
  • github.com
  • github.com
  • 9年前
  • 46分钟前
  • 11年前

安装总数

  • 总计 1万
  • Win 7K
  • Mac 2K
  • Linux 734
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 1 0 1 1 0 0 1 0 0 1 0 1 0 0 0 0 0 1 0 1 0 0 1 0 1 1 0 1 0 0 0 1 0 0 2 0 1 1 1 0 1 1 1
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 1 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

读我

源码
raw.githubusercontent.com

Sublime Text 的成语 CSS 注释

Sublime Text 的成语 CSS 风格注释。注释格式基于 Idiomatic CSS,由 @necolas 提供。

感谢 @scottyeck 提供以下 Sass 风格的注释。

安装

您可以通过 Sublime Text 的包管理器(http://wbond.net/sublime_packages/package_control)并搜索 Idiomatic CSS Comments 来安装。

使用方法

有多个快捷方式用于不同的注释块。

基本注释

输入快捷方式 com-basic 然后按 tab

/* This is a basic comment */

章节注释

输入快捷方式 com-section 然后按 tab

/* ==========================================================================
   This is a Section Comment
   ========================================================================== */

子章节注释

输入快捷方式 com-sub 然后按 tab

/*
   This is a sub-section comment
   ========================================================================== */

长注释

输入快捷方式 com-long 然后按 tab

/**
 * Short description using Doxygen-style comment format
 *
 * The first sentence of the long description starts here and continues on this
 * line for a while finally concluding here at the end of this paragraph.
 *
 * The long description is ideal for more detailed explanations and
 * documentation. It can include example HTML, URLs, or any other information
 * that is deemed necessary or useful.
 *
 * @tag This is a tag named 'tag'
 *
 * TODO: This is a todo statement that describes an atomic task to be completed
 *   at a later date. It wraps after 80 characters and following lines are
 *   indented by 2 spaces.
 */

待办事项列表注释

输入快捷方式 com-todo 然后按 tab

/**
 * TODO:
 *
 * => Write some code
 * => Make some lists
 *
 */

Sass 风格注释

上面列出的每种注释类型都可以使用以下快捷方式以 Sass 风格进行渲染。

  • 基本注释(Sass) - com-sass-basic
  • 章节注释(Sass) - com-sass-section
  • 子章节注释(Sass) - com-sass-sub
  • 长注释(Sass) - com-sass-long
  • 待办事项列表注释(Sass) - com-sass-todo

同样,每个快捷方式都应跟在 tab 键后面。