Sublime3 用户设置备份

安装的插件:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
1. Alignment
2. Autoprefixer
3. PySide
4. PyV8
5. SublimeLinter
6. SublimeTmpl
7. Terminal
8. Markdown Preview
9. Markdown Editing
10. SmartMarkdown
11. Pretty YAML
12. Python Flake8 Lint
13. SideBarEnhancements
14. SublimeCodeIntel
15. Git Config
16. GitStatus
17. Gitignore
18. Go to definition
19. GoToLastEdit
20. SublimeGit

Octopress的其他杂项

放了半天狗, 添加许多小东西到 Octopress, 如 tags, 相关文章, 添加多说评论到边栏 等等.

参考文章: http://blog.csdn.net/lcliliil/article/details/13725895

不过, 多说的侧边栏评论一直不显示标题, 找了半天也没找到解决方法. 有知道的达人麻烦告知一下.
更新: 已经搞定了, 需要添加 data-thread-key 属性

暂时不想再弄了, 以后再说吧.

  • source\_includes\post\duoshuo.html 中使用 page
  • source\_includes\article.html 中如果是首页使用 post, 否则使用 post

我把加载 js 的部分放到 source\_layouts\default.html 里了, 加在 </body> 前即可.

Windows下彩色化终端文字

更新:
clickcolorama 配合使用, 很方便, 比如:

1
2
3
4
5
6
#!/usr/bin/env python3
#-*- coding: utf-8 -*-

import click

click.secho("red text", fg="red")

最近有在 Windows 命令行程序下打印彩色文字的需要, 放了半天狗, 试了几个包, 都不是很满意, 最后还是使用决定 ctypes.

先看下例子 (超过 15 好像就是背景色了):