visual code
![[Visual Studio Code] 파일을 눌러도 새로운 탭이 생성안될 때](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FRdScZ%2FbtquhjEMsJL%2FDid6VTz0fKUvKUUoGTsqK0%2Fimg.png)
[Visual Studio Code] 파일을 눌러도 새로운 탭이 생성안될 때
설명 Visual Code를 사용할 때 네비게이션바의 파일들을 클릭당 파일을 열고 싶을 때, 설정에서 preview을 꺼주면 됩니다. 스크린샷
[Visual Studio Code] terminal에서 code 명령어 입력하기
보통 vs code내에서 설정을 통해 code 명령어를 입력시키는데 재부팅을 하게 되면 도로묵이 되고 만다.그래서 아예 .bash_profile에 넣어놓는 것을 찾아보았다. OK, it seems "ln" command not work for me (I use this command set up sublime text). But I got an another solution.edit your ~/.bash_profile file.add the following code in it. code () { VSCODE_CWD="$PWD" open -n -b "com.microsoft.VSCode" --args $* ;}after save. do not forget to run source ~/.bash_prof..