「Kitty」の版間の差分
Kusanaginoturugi (トーク | 投稿記録) (→IME サポートを有効にする: add === Single instance mode ===) |
Kusanaginoturugi (トーク | 投稿記録) (→SSH のターミナルの問題: add === Disappearing background color in vim ===) |
||
64行目: | 64行目: | ||
何らかの理由でリモートに terminfo をインストールできない場合、 {{ic|TERM}} をより存在しやすいものに設定してみてください。この場合、端末の機能のいくつかが使えなくなる可能性があることに注意してください。[[OpenSSH#適切な terminfo エントリがないリモートに接続する場合]] を参照してください。 |
何らかの理由でリモートに terminfo をインストールできない場合、 {{ic|TERM}} をより存在しやすいものに設定してみてください。この場合、端末の機能のいくつかが使えなくなる可能性があることに注意してください。[[OpenSSH#適切な terminfo エントリがないリモートに接続する場合]] を参照してください。 |
||
+ | |||
+ | === Disappearing background color in vim === |
||
+ | |||
+ | When using a color scheme with a background color in [[vim]], the background may disappear or flicker while scrolling. To fix this, make sure the environment variable {{ic|TERM}} is still set to {{ic|xterm-kitty}}, then add this line to your {{ic|.vimrc}} file: |
||
+ | |||
+ | {{hc|~/.vimrc|2= |
||
+ | let &t_ut=<nowiki>''</nowiki> |
||
+ | }} |
||
+ | |||
+ | Related bug reports: [https://github.com/kovidgoyal/kitty/issues/108 Github issue #108], [https://sw.kovidgoyal.net/kitty/faq/#using-a-color-theme-with-a-background-color-does-not-work-well-in-vim kitty FAQ] |
||
== 参照 == |
== 参照 == |
2022年9月26日 (月) 10:42時点における版
Kitty はスクリプトを組める OpenGL ベースのターミナルエミュレータです。タイル機能、TrueColor、合字、キーボード入力と画像レンダリングのプロトコル拡張があります。また、 GNU Screen や tmux のようなタイリング機能も提供します。
目次
インストール
使用方法
新しいタブやウィンドウを ctrl+shift
ショートカットで作成・リサイズすることができます。レイアウトは ctrl+shift+l
で切り替えて保存・復元することが可能です。
フルキーボードモードでは ctrl+i
と tab
などのキーを区別します。さらに、アプリケーションによっては波線などのエフェクトを使うことができます。
Kitten
Kitty はサブプログラムを作成するためのフレームワークが備わっておりサブプログラムは kitten と呼ばれます。以下のような kitten が存在します。
たとえば、ターミナルに画像を表示するには (imagemagick が必要です。)
$ kitty +kitten icat image.jpeg
2つのファイルの差分を表示するには:
$ kitty +kitten diff file1 file2
ssh 上でクリップボードを操作するには:
$ kitty +kitten clipboard
設定
kitty は ~/.config/kitty/kitty.conf
に設定を保存し、デフォルトの設定は /usr/share/doc/kitty/kitty.conf
で確認できます。フォント・カラー・カーソル・スクロールバックバッファの動作を調整することができます。利用可能なすべてのオプションは、公式ドキュメントで確認することができます。
ヒントとテクニック
IME サポートを有効にする
IBus IME フレームワークの Kitty サポートは、既定で無効になっています。これを有効にするには、環境変数 GLFW_IM_MODULE=ibus
を設定します。互換性のある IBus インターフェースが提供されているので、 Fcitx5 でも動作します。
Single instance mode
This works similar to a daemon mode. When kitty is launched with the --single-instance
or -1
option, only one instance of kitty will run. Launching kitty subsequently with the same option will create a new window of the existing kitty instance. This will lower memory usage because of a shared GPU cache and also reduces startup time. You can have multiple groups of kitty instances with --instance group name
option. See kitty(1) § single-instance for more information.
トラブルシューティング
SSH のターミナルの問題
kitty を使用して、terminfo を持たないリモートに ssh 接続すると、さまざまな問題が発生する可能性があります。解決策は通常 terminfo にコピーすることです。kitty には、まさにこれを自動化するための ssh kitten があります。
kitty +kitten ssh user@host
ssh のエイリアスとして設定したい場合、そのための一つの方法として、ユーザーが Kitty を使っているかどうかを検出し、もしそうなら、ssh コマンドのエイリアスを設定することです。これを行うには(Bashで)~/.bashrcファイルに次の行を追加します。
~/.bashrc
[[ "$TERM" == "xterm-kitty" ]] && alias ssh="kitty +kitten ssh"
何らかの理由でリモートに terminfo をインストールできない場合、 TERM
をより存在しやすいものに設定してみてください。この場合、端末の機能のいくつかが使えなくなる可能性があることに注意してください。OpenSSH#適切な terminfo エントリがないリモートに接続する場合 を参照してください。
Disappearing background color in vim
When using a color scheme with a background color in vim, the background may disappear or flicker while scrolling. To fix this, make sure the environment variable TERM
is still set to xterm-kitty
, then add this line to your .vimrc
file:
~/.vimrc
let &t_ut=''
Related bug reports: Github issue #108, kitty FAQ