LoginSignup
0
0

More than 5 years have passed since last update.

Sublime Text3 > コメントの列を変更する > 面倒な設定はある

Last updated at Posted at 2016-07-06
対象
Sublime Text3

Ctrl+/にてコメントをつける場合、関数の先頭なのか、関数内なのかでコメントの列が異なる。

// void someFunc1() {
//  doSomeThing();
// }

void someFunc2() {
    // doSomeThing();
}

以下のようにできないだろうか。

// void someFunc1() {
//  doSomeThing();
// }

void someFunc2() {
//  doSomeThing();
}

以下のリンクを見つけた。設定が面倒そうだということが分かった。
http://superuser.com/questions/994183/how-to-toggle-comments-in-column-1-in-sublime-text-3

0
0
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
0
0