VS Code Short cut

Multi Cursor

with up and down

cmd + alt + up or down

같은 단어 선택하기

function isExistAttr(key) {
  if (this.$attrs["confirm"] === "" || this.$attrs["confirm"] === true || this.$attrs["confirm"] === "true") {
  }
}
function isExistAttr(key) {
  const attr = this.$attrs[key];
  if (attr === "" || attr === true || attr === "true") {
    this.customClass = "confirm";
  }
}

Click

alt(option) + click

with block

alt(option) + shift + i

with drag

alt(option) + shift + drag

Find