1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

macのターミナルからVSCodeを開く方法

Last updated at Posted at 2023-03-30

zshからVSCodeを開く方法

ターミナルでcode .で開くのが楽そうだったので色々試したが、なんやかんやハマってしまったので記事に残しときます。

今回参考にさせていただいた記事
https://www.crossroad-tech.com/entry/babylonjs-editor-visual-studio-code-path
本当にありがとうございます

手順

簡潔にいうと.zshrcにPATHを記載する

1. ターミナルを開く
2. cd
3. touch ~/.zshrc
4. open ~/.zshrc
5. ファイルが開くので下記のパスを記載する
export PATH="\$PATH:/usr/local/bin:/Applications/Visual Studio Code.app/Contents/Resources/app/bin:$PATH"
5. 入力が終わったら、.zshrcを実行
   source ~/.zshrc
6. 念の為、VSCodeにて下記のものを実行
  Shell Command: Install 'code' command in PATH

command + shift + pを押したら出てくる検索欄で shell commandとか打ったら出てきます

自分はこれでできました。参考にさせていただいた記事を書かれた方、本当にありがとうございました。

補足
これでもできないという方は一度、VScodeがアプリケーションの中に入っているかを確認してください。自分はダウンロードの中に入っていて、アプリケーションに移すことでできるようになりました。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?