0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Braveブラウザで特殊文字ポップアップを無効にする方法

Posted at

Macでキー長押し時の特殊文字ポップアップ(アクセントメニュー)を無効化する方法

目的

braveブラウザ等の特定のアプリでキーを長押ししたときに表示される「アクセント付き文字のポップアップ」を無効化し、連打入力を可能にする設定方法。


1. グローバル設定を無効化

defaults write -g ApplePressAndHoldEnabled -bool false
killall SystemUIServer

2. Braveブラウザで無効化(個別アプリ設定)

defaults write com.brave.Browser ApplePressAndHoldEnabled -bool false
killall "Brave Browser"

3. 設定の確認

グローバル設定の確認:

defaults read -g ApplePressAndHoldEnabled

Braveの設定確認:

defaults read com.brave.Browser ApplePressAndHoldEnabled

false または 0 と表示されれば無効化成功です。

4. 元に戻す場合(再有効化)

defaults write -g ApplePressAndHoldEnabled -bool true
defaults write com.brave.Browser ApplePressAndHoldEnabled -bool true
killall SystemUIServer
killall "Brave Browser"
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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?