-
-
Notifications
You must be signed in to change notification settings - Fork 59
feat: 言語がenglishでcomposingの場合はスペースキーで半角空白が入力されるよう変更 #248
Copy link
Copy link
Open
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers
Description
以下のコメントに対応。macOS標準のシステムとの機能アラインメント。
.composing で英数のときは
case .spaceを .previewing や .selecting への遷移ではなく、macOS 標準と同じ「空白」入力にしませんか?
case .escape:
return (.stopComposition, .transition(.none))
case .space:
- if liveConversionEnabled {
+ if inputLanguage == .english {
+ return (.appendToMarkedText(" "), .fallthrough)
+ } else if liveConversionEnabled {
return (.enterCandidateSelectionMode, .transition(.selecting))
} else {
return (.enterFirstCandidatePreviewMode, .transition(.previewing))Originally posted by @amatsus in #246 (comment)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers