티스토리 뷰

728x90
반응형

vscode

소개하는 단축키는 글의 최하단에 있는 하이라이트 코드에서 테스트 가능하다.

ctrl + [ ctrl + ]

아래의 하이라이트 코드에서 테스트 해볼 수 있다.

Alt + Shift + 수직방향키

해당 커서에 있는 라인을 그대로 복사한다.
아래키를 누르고 복사하면 복사한 라인에 커서가 이동하고, 위 키를 누르면 복사한 원본에 커서가 유지된다.

Ctrl + 좌우방향키

단어, 공백 등을 기준으로 커서가 이동된다
Shift와 함께 누르면 한번에 선택 된다.

Ctrl+Alt +수직 방향키

멀티 커서 기능.
커서가 여러개 생겨 여러라인에 동일한 텍스트를 써야 할때 유용하다.

Ctrl + D

특정한 영역 블록선택 후 누르면 해당 영역과 동일한 텍스트에 멀티커서가 생긴다.
동일한 텍스트 뒤나 앞 부분에 무언가를 추가해야할때 유용하다.

async function postModify() {
  const editorText = await ImageRlacer();
  const f = new FormData();
  const category = document.querySelector(`[name='category']`);
  const subject = document.querySelector(`[name='subject']`);
  const tag = document.querySelector(`[name='tag']`);
  f.append("modify", "1");
  f.append("title", subject.value);
  f.append("postId", document.querySelector(`[name='postId']`).value);
  f.append("content", editorText);
  f.append("visibility", "2");
  f.append("category", category.value);
  f.append("published", "2020-12-31 23:59:59");
  f.append("slogan", subject.value);
  f.append("tag", tag.value);
  f.append("access_token", window.access_token);
  const clientkey = document.getElementById("clientkey").value;
  const SecretKey = document.getElementById("SecretKey").value;
  f.append('client_id', clientkey)
  f.append('secret_key', SecretKey)
  f.append('blogName', document.querySelector(`[name='blogName']`).value)
  const res = await axios({
    method: 'post',
    url : 'tistory.php',
    headers: {'Content-Type': 'multipart/form-data'},
    data : f
  });
}
async function blog_info() {
  const f = new FormData();
  console.log('access_token', window.access_token);
  f.append("blog_info", "1");
  f.append("access_token", window.access_token);
  const clientkey = document.getElementById("clientkey").value;
  const SecretKey = document.getElementById("SecretKey").value;
  f.append('client_id', clientkey)
  f.append('secret_key', SecretKey)
  f.append('blogName', document.querySelector(`[name='blogName']`).value)
  const res = await axios({
    method: 'post',
    url : 'tistory.php',
    headers: {'Content-Type': 'multipart/form-data'},
    data : f
  });
  const blogName = res.data.tistory.item.blogs[0].name;
  document.querySelector(`[name='blogName']`).value = blogName;
  console.log(res);
}
728x90
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
글 보관함