native macOS codings agent orchestrator
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #157 from bouk/fix-accent-key-hold

Disable press-and-hold accent menu for key repeat

authored by

khoi and committed by
GitHub
452cdec3 0b9e17a1

+4
+4
supacode/App/supacodeApp.swift
··· 32 32 var appStore: StoreOf<AppFeature>? 33 33 34 34 func applicationDidFinishLaunching(_ notification: Notification) { 35 + // Disable press-and-hold accent menu so that key repeat works in the terminal. 36 + UserDefaults.standard.register(defaults: [ 37 + "ApplePressAndHoldEnabled": false, 38 + ]) 35 39 appStore?.send(.appLaunched) 36 40 } 37 41