LoginSignup
0
0

More than 1 year has passed since last update.

MacでターミナルエミュレータにHyperを使ったらNvChadでoptionキーを使ったキーショートカットが反応しなかった

Posted at

ターミナルエミュレータをHyperに乗り換えてみたらNvChadでoption + hでターミナルの表示・非表示が動かなかったので軽くググってみたらそれっぽいissueを見つけたので試してみたら解決しました。

英語ネイティブじゃないくせに斜め読みしかしてないので詳しいことは把握してませんが、

~/.hyper.js
"use strict";
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
    config: {
        中略
        modifierKeys: { altIsMeta: true },
    },
    後略

というように、modifierKeysの項目を追加したら動くようになりました。

参考文献:https://github.com/vercel/hyper/issues/330

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