Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save avshatalov48/45dabdecdb756ac4a9069f421c726922 to your computer and use it in GitHub Desktop.
Save avshatalov48/45dabdecdb756ac4a9069f421c726922 to your computer and use it in GitHub Desktop.

GitHub Gist - настройка и установка в Sublime Text 3

  1. Установка GitHub Gist в Sublime Text 3
  1. Генерация токена на GitHub
  1. Прописываем полученный токен в настройках ST3
  • Preferences > Package Settings > Gist > Settings-User > "token"
  1. Меняем сочетания клавиш в настройках ST3
  • Preferences > Package Settings > Gist > Key Bindings-User

Например,

[
	{ "keys": ["alt+shift+f"], "command": "reindent" },

	{ "keys": ["ctrl+k+i"], "command": "gist" },
	{ "keys": ["ctrl+k+p"], "command": "gist_private" },
	{ "keys": ["ctrl+k+s"], "command": "gist_update_file" },
	{ "keys": ["ctrl+k+o"], "command": "gist_list" },
	{ "keys": ["ctrl+k+["], "command": "insert_gist_list" },
	{ "keys": ["ctrl+k+]"], "command": "gist_add_file" }
]

Альтернативные инструкции:

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