0
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 3 years have passed since last update.

vscodeでファイルが開けなくなったんだが??

Posted at

 経緯

vscodeでいつも通りディレクトリを指定して、ファイルを開こうとしてダブルクリックをしたが、右にファイルが表示されない→書き込めない!!
スクリーンショット 2022-02-04 9.15.46.png
なんやらエラーも出できたし、なんなんだいきなり、、、
スクリーンショット 2022-02-04 9.19.53.png

調べるにもキーワードが難しいし、記事がなかなか出てこない、、、

結論

~/Library/Application Support/Code/User/settings.jsonを書き換える


"workbench.editorAssociations": [
    {
-       "*.ipynb": "jupyter-notebook"
+       "viewType": "jupyter-notebook",
+       "filenamePattern": "*.ipynb"
    }
],

参考

0
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
0
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?