LoginSignup
2
2

More than 5 years have passed since last update.

Sublime Text3の利用のため、有用なTips,Shortcuts

Last updated at Posted at 2015-11-08

Tap設定

ST3のタブのデフォルトは4キャラクターなので、以下の通りタブの設定を行う。
設定の箇所:[Preferences] => Settings - User

{
   "draw_white_space": "all",
   "rulers": [80],
   "tab_size": 2,
   "translate_tabs_to_spaces": true
}

Shortcuts

以下のキーはWindowsの基盤です。

1.Search/Find

  • Ctrl + F             find
  • F3                find next
  • shift + F3            find previous
  • Ctrl + G + line number入力     search code line
  • Ctrl + R + Definition入力      search code Definition

2.Edit Text

  • Ctrl + /             comment code(単一行)
  • Ctrl + Shift + /         comment code(範囲)
  • Ctrl + L             code lineの範囲選択
  • Ctrl + Shift + ↑ or ↓       code lineの移動
  • Ctrl + D             単語選択
  • Ctrl + Shift + K         code line削除
  • Ctrl + H             replace
  • Ctrl + Enter           insert line after
  • Ctrl + Shift + Enter       insert line before
2
2
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
2
2