os/MAC

CLI run Visual Studio Code

C/H 2021. 2. 25. 10:41

Add to Command

  • .zshrc

  • .bashrc

    code () {
      if [[ $# = 0 ]]
      then
          open -a "Visual Studio Code"
      else
          [[ $1 = /* ]] && F="$1" || F="$PWD/${1#./}"
          open -a "Visual Studio Code" --args "$F"
      fi
    }
  • code 명령어가 실행 할 수 있도록 path를 추가해준다.

    • Ctrl+Shift+P, Cmd+Shift+P, Menu > View > Command Palette...에서 shell Command로 검색 후 실행한다.
반응형

'os > MAC' 카테고리의 다른 글

aseprite ios compile  (0) 2020.08.21
mac iTerm2 alt+arrow, alt+backspace shortcuts  (0) 2020.05.01
아이폰 단축어  (0) 2020.04.01
Mac zsh  (0) 2020.01.28
MAC iterm split window move  (0) 2017.04.27