8
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

sublime text3のショートカット(Mac)

Last updated at Posted at 2015-02-07

sublime text3(Mac)のショートカットで、
個人的によく使いそうなものをまとめる

##画面分割(2,3)、分割解除(1)
・alt+command+1,2,3

##ファイル選択(移動)
・command+P
→文字入力でインクリメンタルサーチしてくれる

##コマンドパレット
・command+shift+P
→パッケージコントロールとか

##メソッド飛び
・command+P,@
・command+R

##行飛び
・command+P,:
・ctrl+G

##検索
・command+F
→ファイル内検索

・command+shift+F
→ファイル横断検索

・command+i
→ファイル内インクリメンタル検索

##選択
・command+D
→同じ文字列を複数選択

・ctrl+command+G
→一気に全て選択

・command+A,command+shift+L,left
→各行の行頭を複数選択

##Alignment(package)
・command+ctrl+A
→イコールとかの位置をあわせてくれる

##Sublime Files
・ctrl+command+N
→サイドバーをコマンドで移動

SublimeLinterのキーとかぶってるので、Linterの方を変更(使わないので)

ユーザのキーバインド設定
	{ "keys": ["ctrl+super+shift+a"], "command": "sublimelinter_show_all_errors" }

##宣言飛び(飛び元に戻る)
・F12
→標準のやつ

・ctrl+click
→CondeIntel(package)のやつ

・alt+left
→スタックから前に開いてたファイルに飛ぶ

・alt+right
→スタックから先に開いてたファイルに飛ぶ

・ctrl+-
→スタックから前にいた位置に飛ぶ

・ctrl+shift+-
→スタックから先にいた位置に飛ぶ

※F12で飛ぶ→alt+leftで飛ぶ前のファイルに戻る、って感じ使う

ユーザのキーバインド設定
	{ "keys": ["alt+left"], "command": "next_view_in_stack" },
	{ "keys": ["alt+right"], "command": "prev_view_in_stack" },
	{ "keys": ["ctrl+minus"], "command": "jump_back" },
	{ "keys": ["ctrl+shift+minus"], "command": "jump_forward" },"sublimelinter_show_all_errors" }

##ペースト
・command+V
→ペーストとインデント
デフォルト設定は別なので

ユーザのキーバインド設定
	{ "keys": ["super+v"], "command": "paste_and_indent" },
	{ "keys": ["super+shift+v"], "command": "paste" },

・command+alt+V
→コピー履歴から選択してペースト

##codeIntel(package)

・ctrl+shift+space
→補完

※ドットとかをいれれば自動で補完候補でるが、強制的に出す場合

8
4
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
8
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?