Box-Of-Hats / Bem-VSCode-Extension

A VSCode extension for helping with inserting BEM (Block-Element-Modifier) classes.
BSD 3-Clause "New" or "Revised" License
29 stars 5 forks source link

How do shortcut keys customize the tag name? #18

Closed sunxiuming92 closed 4 years ago

sunxiuming92 commented 4 years ago

example:

//Here I use alt + b e

expectation:

//I hope this is the view tag
sunxiuming92 commented 4 years ago

example:

<view class="list">
  <div class="list__"></div> //Here I use alt + b e
</view> 

expectation:

<view class="list">
  <view class="list__"></view>//I hope this is the view tag
</view> 
sunxiuming92 commented 4 years ago

example:

<view class="list">
  <div class="list__"></div> //Here I use alt + b e
</view> 

expectation:

<view class="list">
  <view class="list__"></view>//I hope this is the view tag
</view>