12
11

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.

【一括】一行一行コメントアウトするの面倒くさい。【コメントアウト】

Last updated at Posted at 2015-09-09

面倒くさかった事

テストコード
var content1 = $("#Id");
alert(content1.~~);

とかってコードを書いた後、コメントにしようとして、

順序1
/**/
var content1 = $("#Id");
alert(content1.~~);

順序2
/*
var content1 = $("#Id");
alert(content1.~~);

順序3
/*
var content1 = $("#Id");
alert(content1.~~);
*/

この手順が非常に面倒だった。
XCodeとかAndroidStudio だと出来るじゃん!と、Ctrl + / を連打したが、できず。。。

ショートカットキーがあるらしい

Ctrl + K を押した後、 Ctrl + C を押すと、コメントアウト
Ctrl + K を押した後、 Ctrl + U を押すと、コメントアウト解除
C: Comment(コメント), U: UnComment(コメント解除) とかで覚えてしまいましょうか。
※ 英語力の無さが露呈しすぎてて辛いですね。

これで、デバッグ時等、捗りますね。
まあ、そもそも、jsとかはコメント残さない方が。。。。ってのは後々考えるとして。笑

12
11
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
12
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?