-
-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Nodeのfsモジュールをvscode APIのFileSystemに置き換えたい #18
Comments
あとでPRを作ってみる予定です |
わわわ、これは面倒そうですね。非同期前提ですか。 |
今どきのTypeScriptは非同期前提なので…というのに加えて、例えばそれなりに大きなファイルを読み込んでいる間はエディタが固まる、みたいなことが起きると非常に体験が良くないというのもありそうです。 extension.tsについては #19 で修正してみました。ご確認いただければ。 |
ありがとうございます。なるほど、と思うことしきり。 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
この拡張では以下のようにNodeのfsモジュールを使っていますが、
vscode-language-japanese-novel/src/extension.ts
Line 2 in 82354de
vscodeではvscode自体が用意しているFileSystem APIを使うほうが良いそうです(どうもSSHやWSL remote file systemsで動かす時の移植性の問題のようです)。
https://code.visualstudio.com/updates/v1_37#_vscodeworkspacefs
async/awaitが前提のようなのでちょっと使い方が面倒かもしれません…(私も詳しくなくて、「functionの前にasyncを付けて、関数呼び出しの前にawaitをつけると動くっぽい」程度の理解です)。
参考資料:
The text was updated successfully, but these errors were encountered: