python 환경설정, 단축키, 설정파일 위치

Cute_Security15·2024년 11월 4일
0

window dev

목록 보기
4/4
post-thumbnail

상황

python 개발 환경을 vscode 에 구성하고,

단축키는 visual studio 2019 에 세팅해둔 단축키와 최대한 유사하게 가져가려고 한다.

python 환경설정

python : microsoft store 에서 설치 (별도 설정 필요없음)

pip : get-pip.py 파일에 아래 내용을 넣고 실행

opencv : pip 로 설치

  • pip install python-opencv

단축키 변경위치

File -- Preferences -- Keyboard Shortcuts
( ctrl + k, ctrl + s )

자주쓰게 되는 단축키

ctrl + \ : vertical split
ctrl + k, ctrl + \ : horizontal split

f12 : goto definition
shift + f12 : goto references
ctrl + pageup : move to previous window

ctrl + shift + e : explorer (파일 탐색기)
ctrl + b : explorer 토글
ctrl + shift + u : output 토글

화살표 : 커서 전후좌우 이동

ctrl + / : 블록지정영역 주석

ctrl + k, ctrl + f : formatting

ctrl + , : 설정진입

ctrl + shift + p : command palette

alt + <- : navigate back
alt + -> : navigate forward

변경한 단축키

command palette 에서 Open Keyboard Shortcuts 로 검색후 설정 윈도우 클릭

ctrl + q : close window

  • 기존엔 ctrl + f4 (View: Close Editor)

vscode 주요파일 위치

%USERPROFILE%.vscode\extensions

%USERPROFILE%\AppData\Roaming\Code

  • vscode 의 설정파일 위치로, 이 안에 유저세팅(User\settings.json) 이 들어있다.
  • ctrl + , 로 켠 기능들은 이곳에 기록된다.

설정변경

커서 blink disable

profile
관심분야 : Filesystem, Data structure, user/kernel IPC

3개의 댓글

comment-user-thumbnail
2024년 11월 8일

calm down vscode pylance

#type: ignore 를 .py 파일 위에 추가

답글 달기
comment-user-thumbnail
2024년 11월 8일

Inlay hints: function return types 끄는 법

  • 'ctrl + ,' --> Pylance 클릭 --> 'Python > Analysis' 로 검색 --> 체크박스 해제
답글 달기

breakpoint() 시
ctrl + f5 로 실행하면 pdb 로 빠지고,
f5 로 하면 vscode debugger ui 로 빠지는걸 확인

답글 달기