diff --git a/Source/Modules/InputHandler_HandleInput.swift b/Source/Modules/InputHandler_HandleInput.swift index 9342d8e5..435ac96e 100644 --- a/Source/Modules/InputHandler_HandleInput.swift +++ b/Source/Modules/InputHandler_HandleInput.swift @@ -172,13 +172,6 @@ extension InputHandler { case .kEscape: return handleEsc() case .kTab: return handleInlineCandidateRotation(reverseOrder: input.isShiftHold) case .kUpArrow, .kDownArrow, .kLeftArrow, .kRightArrow: - if (input.isControlHold || input.isShiftHold) && (input.isOptionHold) { - if input.isLeft { // Ctrl+PgLf / Shift+PgLf - return handleHome() - } else if input.isRight { // Ctrl+PgRt or Shift+PgRt - return handleEnd() - } - } if input.isCursorBackward { return handleBackward(input: input) } // Forward if input.isCursorForward { return handleForward(input: input) } // Backward if input.isCursorClockLeft || input.isCursorClockRight { // Clock keys