2
3

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.

Windows Terminal V1.0 を使ってみた

Last updated at Posted at 2020-05-20

#Windows Terminal V1.0 正式版がリリースされた
Windows Terminal 1.0正式版が、ようやくリリースされた。

Windows10 1903 以上であれば Microsoft Store からインストールもできるので、さっそく使ってみた。
###最初に起動するのをコマンドプロンプトにしたかった
設定ファイル settings.json を開き、コマンドプロンプトを起動するように変更した。
(デフォルトは PowerShell が起動する)
"defaultProfile": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
コマンドプロンプトに変更した
"defaultProfile": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",

###フォントとサイズを変更
フォントは MS ゴシックでフォントサイズが14が使いやすいので変更した。
PowerShellでも共通の設定としたかったので、共通個所に追記することにした

  "defaults":
    {
        // Put settings here that you want to apply to all profiles.
            "fontFace": "MS Gothic",
            "fontSize": 14

###コマンドで起動
Windowsの設定で、コマンド起動するように設定されていたので、wt.exeを実行。コマンドプロンプトが起動してきた。これで、2つの画面横並びにできた。
cmdPrompt.png

###上下または左右に2つにペインを分割
上にコマンドプロンプト、下にPowerShellを同時に開きたい場合は、以下のコマンドを入れると1つのタブで上下で画面が表示される
wt.exe new-tab -p "cmd" ; split-pane -H -p "Windows PowerShell"
cmdandps.png
####左右にするとき
引数の中で-Hを外せば、左右で分割表示にできた
wt.exe new-tab -p "cmd" ; split-pane -p "Windows PowerShell"
cmdandps-h.png
###プロセスはコード 9009 で終了??
はじめに適当なコマンドを打った後、Exitで抜けようとしたら、[プロセスはコード 9009 で終了しました]とエラーコードが表示された。
cmdandps-h-err.png
Hungupしているのか、exitと抜けようとしても入力を受け付けない
このエラーが出ないときは、普通に左側のほうだけウィンドウが閉じるんだけどなぁ。
###何分割までできるのか
暇なので、5分割までやってみた、5つはやりすぎた感。
wt.exe new-tab -p "cmd" ; split-pane -p "cmd" ; split-pane -p "cmd"; split-pane -p "cmd"; split-pane -p "cmd"
cmdandps-h5.png

###ペインの移動をキーボードで行うには
[Alt]キーを押しながら、矢印キーを押すと目的のペインに移動できる。
ただ、アクティブなペインを示す青枠がかなり細いので、切り替わったペインが一瞬どっちなのか、見失うことも。。
###ペインの大きさを変更する
変更したいペインをアクティブにして、[Alt]+[Shuft]のまま矢印キーでペインサイズを変更できる

2
3
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
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?