1
3

More than 3 years have passed since last update.

Sublime Textのプラグインでやりたいことをやるためのリンク集

Last updated at Posted at 2019-06-17

とにかくはじめはPackage Control

  • メニューからインストールできるようになっていた

認証が必要なProxyの場合

普通にやるとエラーになる
urllib.error.HTTPError: HTTP Error 407: Proxy Authentication Required (.......
# [username][password][proxy_server][port]を環境と認証情報に置き換えてからConsoleに入れる
import urllib.request,os,hashlib; h = '7183a2d3e96f11eeadd761d777e62404e330c659d4bb41d3bdf022e94cab3cd0'; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); urllib.request.install_opener( urllib.request.build_opener( urllib.request.ProxyHandler({"http": "http://[username]:[password]@[proxy_server]:[port]", "https": "https://[username]:[password]@[proxy_address]:[port]"})) ); by = urllib.request.urlopen( 'http://sublime.wbond.net/' + pf.replace(' ', '%20')).read(); dh = hashlib.sha256(by).hexdigest(); print('Error validating download (got %s instead of %s), please try manual install' % (dh, h)) if dh != h else open(os.path.join( ipp, pf), 'wb' ).write(by)

手動でやる場合

  1. Click the Preferences > Browse Packages… menu
  2. Browse up a folder and then into the Installed Packages/ folder
  3. Download Package Control.sublime-package and copy it into the Installed Packages/ directory
  4. Restart Sublime Text

Installation - Package Control

インストール済みのを確認したい

プラグインがインストールされている場所を見たい
[Sublime Text] > [Preferencese] > [Browse Packages] > Finderでインストールされている場所が開く

インストール済みのを確認したい
[Ctrl + Shift + P] > [Package Control: List Packages]

アンインストールしたい

Ctrl + Shift + P > 「remove」で検索 > [Package Control: Remove Package] > アンインストールするプラグインを選択してEnter

いろんな文字コードのファイルを開きたい

便利なのがほしい

〇〇書くのに使いたい

JavaScript

Markdown

OmniMarkupPreviewerでやりたいこと Windows/Linux Mac
Preview Markup in Browser Ctrl+Alt+O ⌘+⌥+O
Export Markup as HTML Ctrl+Alt+X ⌘+⌥+X
Copy Markup as HTML Ctrl+Alt+C Ctrl+Alt+C

SublimeTextで他のことをやりたい

Sublime Text でやりたいことをやるためのリンク集 - Qiita

1
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
3