Skip to content

Instantly share code, notes, and snippets.

@david30907d
Last active October 26, 2016 02:43
Show Gist options
  • Save david30907d/c03eee7e6fa8b23a9d237dfb57a121f6 to your computer and use it in GitHub Desktop.
Save david30907d/c03eee7e6fa8b23a9d237dfb57a121f6 to your computer and use it in GitHub Desktop.

Sublime3 我愛的熱建設定

點開 sublime -> preference -> Key bindings 把下面這串貼近去右邊即可

[
	//「Home or「End」 移動至行首 or 行尾
	{"keys":["ctrl+left"], "command":"move_to", "args":{"to":"bol"} },
	{"keys":["ctrl+right"], "command":"move_to", "args":{"to":"eol"} },
	// press F5 to refresh folder list!!
	{ "keys": ["f5"], "command": "refresh_folder_list" },
	// word_wrap hot key~
	{ "keys": ["ctrl+shift+w"], "command": "toggle_setting", "args": {"setting": "word_wrap"}}
]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment