27
17

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の拡張機能を導入してみました.

環境

  • OS: Windows10 Home
  • VSCode: 1.38.1

手順

VSCodeに拡張機能を導入する

導入する拡張機能はVscode google translateです.

20190925122100.png

自分が導入したバージョンは1.4.2です.

キーバインドを設定する

公式のサイトだと,「選択した状態でALT+SHIFT+Tを押せばイケるよ!」みたいなことが書いてありました.

けれど自分はできなかったので,キーバインドを設定しました.

まずctrl+shift+pでコマンドパレットを開いてkeyと入力します.

20190925121936.png

出てきたPreference: Open Keyboard Shortcuts (JSON)を開きます.

ここに以下を追記します.

{
    "key": "ctrl+alt+t",
    "command": "extension.translateLinesUnderCursor",
    "when": "editorTextFocus"
}

"key": の部分は自分が好きなものに変えましょう.

しっかり保存することも忘れずに.

使ってみる

ちゃんと設定できているかの確認をします.

適当なテキストファイルで英語を書きます.

20190925122248 (2).png

これを選択して,さっき設定してキーバインドを押します.
僕の場合はctrl+alt+tを押しました.
するとコマンドパレットが出てくるので,jaとか適当に打ってjapaneseを選択します.

20190925122252.png

これで翻訳できるはずです.

20190925122256.png 20190925122300.png

!?

おわりに

とりあえず普通の英文は翻訳できるみたいです.

27
17
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
27
17

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?