Summary of VS Code practical settings (updated dynamically!)

  • Set up Chinese interface: expand search chinese
  • Set color theme: File-Preferences
  • Set ctrl+mouse wheel to font:
    Insert picture description here
  • Multi-line selection: often press the mouse wheel to scroll down.
  • Hot update webpage: extension----install liveserver----ctrl+shift+p to call out (need to put the webpage on a certain webpage)
    liveserver does not support gbk character set.
    Insert picture description here
  • Generate HTML skeleton: !+tab
  • Modify the HTML encoding format to be consistent with the document meta to avoid garbled characters.
    Insert picture description here
  • When the window is zoomed out, the display is not complete: View ---- word wrap alt+z
  • Comment: ctrl+/
  • Delete a line: ctrl+shift+k
  • Quickly generate include/parallel code: ul>li ul+li
div>h3+ul>li
<div>
  <h3></h3>
  <ul>
    <li></li>
  </ul>
</div>
  • Quickly add multi-line hyperlinks
 <li>儿科总和</li>
 <li>小儿内科</li>
 <li>小儿外科</li>
 <li>新生儿科</li>
 <li>儿童营养科</li>
 <li>消化内科</li>

操作是按住鼠标滚轮多选--打上a标签--再按住鼠标滚轮多选闭合标签剪贴ctrl+x,并按end到行尾--后退,粘贴

<li><a href="">儿科总和</a></li>
<li><a href="">小儿内科</a></li>
<li><a href="">小儿外科</a></li>
<li><a href="">新生儿科</a></li>
<li><a href="">儿童营养科</a></li>
<li><a href="">消化内科</a></li>

Guess you like

Origin blog.csdn.net/LIZHONGPING00/article/details/114858956