Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- test
- customize
- DynamoDB
- python
- 도커컴포즈
- zsh
- terraform
- Bash
- 파이썬
- Shell
- 테라폼 기본 문법
- sftp란
- BIG-O NOTATION
- 컨테이너
- iterm2 단축키
- AWS
- iterm2 shortcuts
- server
- linux
- zshrc
- minikube 설치 방법
- 도커
- 빅오노테이션
- 테라폼 문법
- minikube mac 설치
- Django
- docker
- docker-compose
- nosql
- terraform 문법
Archives
- Today
- Total
목록vscode (1)
sklass의 s-class 프로그래밍 blog

Visual Studio Code에서 code 명령어를 사용하기 위해서는 Visual Studio Code 앱을 열고, Command + Shift + p를 눌러준 다음, 아래와 같이 Shell Command: Install 'code' command in PATH를 설정해주어야 한다. 하지만 이와 같은 방법은 일시적인 방법으로 컴퓨터를 재시작하면 다시 설정을 해야하는 번거러움이 있다. 이를 해결하기 위해서는 ~/.zshrc에 아래 명령어를 추가해주면 된다. code () { VSCODE_CWD="$PWD" open -n -b "com.microsoft.VSCode" --args $* ;}
shell
2021. 8. 21. 21:13