vscode vue html shortcut keys

css file

Insert image description here

Select multiple rows

Press and hold ctrl.
Press and hold the mouse wheel (middle mouse button)
to move the mouse down.

Modify multiple identical strings at the same time
<style>
.base-goods-item li {
    
    
  width: 304px;
  height: 404px;
  background-color: #eef9f4;
}
.base-goods-item li {
    
    
  display: block;
}
.base-goods-item li .pic {
    
    
  width: 304px;
  height: 304px;
}
.base-goods-item li .txt {
    
    
  text-align: center;
}
</style>

Select the string ctrl to be modified
, hold it down
, then press D
and release D
, press D again,
release D,
and so on.

This allows you to select multiple identical strings

vscode opens the terminal interface by default

The key above the ctrl + tab key

How to open multiple instances of vscode

Settings - Windows - New Window
Insert image description here

Guess you like

Origin blog.csdn.net/wowocpp/article/details/133171062