# vscode 1.0 이전까지는
# 쉘 리소스에 (.bashrc, .zshrc ...) 에 다음 코드를 추가해야 한다.
code () {
VSCODE_CWD="$PWD" open -n -b "com.microsoft.VSCode" --args $*
}
# vscode 1.0 부터는
# 명령 팔렛트(command + shift + p) -> install -> "쉘 명령: PATH 에 'code' 명령 설치" 를 수행
# wsl 을 사용하는 경우 경로 추가가 필요하다.
# export PATH=$PATH:"mnt/c/Program/Files/Microsoft/VS/Code/bin/"
# 최신 버전은 경로가 다음과 같이 바뀌었다.
username=$(wslvar userprofile | tr '\\' ' ' | awk '{print $NF}')
export PATH=$PATH:"/mnt/c/Users/${username}/AppData/Local/Programs/Microsoft VS Code/bin"
# 이제 쉘에서 다음과 같이 바로 vscode 로 파일을 열어 실행할 수 있다.
code file.txt
comments:
댓글 쓰기