- C-a == Ctrl-a
- M-a == Alt-a
:q close
:w write/saves
:wa[!] write/save all windows [force]
:wq write/save and close
{ | |
// The plugin looks for a .jsbeautifyrc file in the same directory as the | |
// source file you're prettifying (or any directory above if it doesn't exist, | |
// or in your home folder if everything else fails) and uses those options | |
// along the default ones. | |
// Details: https://github.com/victorporof/Sublime-HTMLPrettify#using-your-own-jsbeautifyrc-options | |
// Documentation: https://github.com/einars/js-beautify/ | |
"html": { | |
"allowed_file_extensions": ["htm", "html", "xhtml", "shtml", "xml", "svg", "dust"], |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# unzip-gbk.py | |
import os | |
import sys | |
import zipfile | |
print u"正在处理压缩文件 %s" % sys.argv[1].decode('utf-8') | |
## ArchLinux on MacBook Retina 13" | |
### Info | |
#### Resources | |
- [cgdisk Walktrough](http://www.rodsbooks.com/gdisk/cgdisk-walkthrough.html) | |
- [ArchLinux Installation Guide](https://wiki.archlinux.org/index.php/Installation_Guide) | |
- [ArchLinux MacBook Retina](https://wiki.archlinux.org/index.php/MacBookPro_Retina) | |
- [Puppet for MacBook Retina](https://github.com/jantman/puppet-archlinux-macbookretina) |