0
1

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.

VSコードの自動補完

0
Last updated at Posted at 2021-04-09

VSコードの自動補完機能

VSコードに自動補完機能があることを今更知った為、覚えたコードをまとめました。
自動補完機能を使うことで時間短縮だけでなく、記述ミスを減らしたりとメリットがたくさんあります。

覚えた時に都度更新していく予定です。

link:css
<link rel="stylesheet" href="style.css">

# container + tabキー 
<div id="container"></div>

.cls + tabキー 
<div class="cls"></div>

span.cls + tabキー 
<span class="cls"></span>
    
# container>cls + tabキー 
<div id="container">
  <cls></cls>
</div>

# container>cls*3 + tabキー 
<div id="container">
  <cls></cls>
  <cls></cls>
  <cls></cls>
</div>

# container>cls-$*3 + tabキー 
<div id="container">
  <cls-13></cls-13>
</div>

# container>cls-$$$*3 + tabキー 
<div id="container">
  <cls-001></cls-001>
  <cls-002></cls-002>
  <cls-003></cls-003>
</div>

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?