Don't wanna be here? Send us removal request.
insufficient-editor · 7 years ago
Photo
1.28.0 오류 수정됨
Tumblr media
Visual Studio Code의 따옴표 자동완성 오류 (현재 버전 1.22.1)
2 notes · View notes
insufficient-editor · 7 years ago
Photo
Tumblr media Tumblr media
Visual Studio Code '줄 아래로 이동' 자동 들여쓰기 오류
Visual Studio Code : editor.action.moveLinesDownAction Atom : editor:move-line-down
0 notes
insufficient-editor · 7 years ago
Photo
해결 방법
고급 사용자 지정(keybindings.json)에 추가
{ "key": "shift+'", "command": "editor.action.insertSnippet", "when": "editorTextFocus", "args": {"snippet": "\"$1\""} }
출처: https://stackoverflow.com/questions/47242202/visual-studio-code-html-attributes-quotes-auto-close
Tumblr media
Visual Studio Code의 따옴표 자동완성 오류 (현재 버전 1.22.1)
2 notes · View notes
insufficient-editor · 7 years ago
Photo
Tumblr media
Atom 초기 때부터 있던 오류 문단 특정 길이를 넘어가면 화면에 표시가 안 됨
0 notes
insufficient-editor · 7 years ago
Photo
Tumblr media
Visual Studio Code의 따옴표 자동완성 오류 (현재 버전 1.22.1)
2 notes · View notes
insufficient-editor · 7 years ago
Photo
Tumblr media
Sublime Text 3
{ "keys": ["ctrl+shift+d"], "command": "duplicate_line" }
동작: 선택된 영역 복사 (duplicate-selection)
Atom
'atom-workspace atom-text-editor:not([mini])': 'ctrl-shift-D': 'editor:duplicate-lines'
동작: 선택된 줄 복사 (duplicate-lines)
Visual Studio Code
{ "key": "ctrl+shift+d", "command": "editor.action.copyLinesDownAction", "when": "editorFocus" }
동작: 선택된 줄 복사 (duplicate-lines)
Atom 의 경우 Sublime Text 3 처럼 바꾸는 패키지가 있음. https://github.com/atom/atom/issues/3002
0 notes