xit!
[x]it!支持在Sublime Text中与待办事项和清单文件协同工作
详细信息
安装
- 总数 651
- Win 281
- Mac 277
- Linux 93
8月7日 | 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日 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
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 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 1 | 0 | 0 |
Mac | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 2 | 1 | 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 | 0 | 0 | 0 | 0 |
说明文档
[x]it! for Sublime Text
该Sublime软件包为[x]it!文件提供语法高亮、快捷键和自动完成功能。
特性
- 语法高亮
- 切换项目状态的快捷命令
- 智能完成截止日期
- 输入例如
5w
,自动完成会将其解析为从现在起5周后的日期。支持d
(天数)、w
(周数)、m
(月数)和y
(年数),以及任何数字前缀。
- 输入例如
- 一些合理的默认设置(例如缩进风格)
配置
命令键绑定
以下命令可用于您自己的Default.sublime-keymap
文件。当然,键组合由您自己决定。
[
// Toggle checkbox status of the item.
// It cycles through the statuses given in the
// `xit_toggle` setting.
{ "keys": ["ctrl+shift+t"], "command": "xit_toggle" },
// Set item status to checked [x]
{ "keys": ["ctrl+shift+x"], "command": "xit_check" },
// Set item status to open [ ]
{ "keys": ["ctrl+shift+o"], "command": "xit_open" },
// Set item status to ongoing [@]
{ "keys": ["ctrl+shift+a"], "command": "xit_ongoing" },
// Set item status to obsolete [~]
{ "keys": ["ctrl+shift+n"], "command": "xit_obsolete" },
// Set item status to in-question [?]
{ "keys": ["ctrl+shift+q"], "command": "xit_in_question" },
]
设置(语法特定)
以下设置可以通过您自己的语法特定xit.sublime-settings
文件进行覆盖。下面的值是默认值。
{
// Auto-save after toggling checkboxes (via the commands `xit_check`, etc.).
"xit_auto_save": true,
// The checkbox statuses that the `xit_toggle` command
// should cycle through.
"xit_toggle": ["[ ]", "[x]"],
}
语法高亮/颜色覆盖
预定义的语法高亮在大多数可用的颜色方案中应该是有意义的。
对于[x]it!特定自定义或修复,您可以指定以下颜色覆盖
markup.other.title.xit
用于项目组标题markup.other.checkbox.open.xit
用于未选中复选框:[ ]
markup.other.checkbox.checked.xit
用于选中复选框:[x]
markup.other.checkbox.ongoing.xit
用于进行中复选框:[@]
markup.other.checkbox.obsolete.xit
用于废弃的复选框:[~]
markup.other.checkbox.in-question.xit
用于待定复选框:[?]
markup.other.priority.exclamation.xit
用于优先级的惊叹号:!
markup.other.priority.dot.xit
用于优先级的点:.
markup.other.description.xit
用于项目描述markup.other.due_date.xit
用于描述中的截止日期:-> 2022-03-27
markup.other.tag.name.xit
用于标签:#example
markup.other.tag.value.xit
用于标签值:#example=value
此外,您还可以参考以下元范围,根据项目状态进行调整:
meta.item.status.open.xit
meta.item.status.checked.xit
meta.item.status.ongoing.xit
meta.item.status.obsolete.xit
meta.item.status.in-question.xit
请参阅此处查看基于暗色方案的完整着色示例:见此
您还可以配置Sublime,使[x]it!始终使用特定的颜色方案。如果您常规颜色方案中的默认颜色不起作用,这特别有用。您可以在您的特定语法xit.sublime-settings
文件中指定此设置
{
// Always use the Monokai scheme for [x]it!
"color_scheme": "Monokai.sublime-color-scheme"
}