20
20

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 Text 2 使用パッケージ

Posted at

Package

TrailingSpaces

行末半角スペース削除/ハイライト(削除は半角スペースのみ、全角スペースは削除されない)

SublimeText/TrailingSpaces

[ Package Control ] - [ Install Package ] - [ TrailingSpaces ]

設定

[ Preferences] - [ Settings - User ]

{
  "trim_trailing_white_space_on_save": true,
  "trailing_spaces_highlight_color": "invalid",
}

CoffeeScript

[ Package Control ] - [ Install Package ] - [ CoffeeScript ]

SCSS

[ Package Control ] - [ Install Package ] - [ SCSS ]
[ Package Control ] - [ Install Package ] - [ SCSS Snippets ]

SideBarEnhancements

[ Package Control ] - [ Install Package ] - [ SideBarEnhancements ]

All Autocomplete

開いているすべてのファイルから補完

[ Package Control ] - [ Install Package ] - [ All Autocomplete ]

Simple Rails Navigator

noklesta/SublimeRailsNav

[ Key Bindings] - [ User ]

[
  { "keys": ["super+ctrl+m"], "command": "list_rails_models" },
  { "keys": ["super+ctrl+c"], "command": "list_rails_controllers" },
  { "keys": ["super+ctrl+v"], "command": "list_rails_views" },
  { "keys": ["super+ctrl+h"], "command": "list_rails_helpers" },
  { "keys": ["super+ctrl+x"], "command": "list_rails_fixtures" },
  { "keys": ["super+ctrl+t"], "command": "list_rails_tests" },
  { "keys": ["super+ctrl+i"], "command": "list_rails_javascripts" },
  { "keys": ["super+ctrl+y"], "command": "list_rails_stylesheets" }
]

CaseConversion

jdc0589/CaseConversion

Aries - CaseConversion

Keybindings

To snake_case: "ctrl+alt+c", "ctrl+alt+s"
to camelCase: "ctrl+alt+c", "ctrl+alt+c"
to PascalCase: "ctrl+alt+c", "ctrl+alt+p"

To snake_case: "ctrl+alt+c+s"
to camelCase: "ctrl+alt+c+c"
to PascalCase: "ctrl+alt+c+p"
20
20
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
20
20

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?