From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <9front-bounces@9front.inri.net> X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-0.6 required=5.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI autolearn=ham autolearn_force=no version=3.4.4 Received: from 9front.inri.net (9front.inri.net [168.235.81.73]) by inbox.vuxu.org (Postfix) with ESMTP id 932D8205E1 for ; Fri, 29 Mar 2024 20:25:10 +0100 (CET) Received: from mail.posixcafe.org ([45.76.19.58]) by 9front; Fri Mar 29 15:23:55 -0400 2024 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=posixcafe.org; s=20200506; t=1711740202; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=S9ItE4ijua6B08PwfJdA7A89GfZu2CwfSM1QxGZxRGs=; b=LDUzbwPU9HEyPiKFMCcmILJA8IWgqr5gfY9jGFW+pY60qubJjLpcJM9sr6KIg5pghNL7rp Wr1iM0b5td6JG5c15n7ZFFaJ6ykgVZ7UiKXJeLcWbmfY31ekfZDPpLjVBeTpAY9P4G5P9p lXwi7eRuIw2Ka0qJAO72QWOymoYY9Kk= Received: from [192.168.168.200] ( [207.45.82.38]) by mail.posixcafe.org (OpenSMTPD) with ESMTPSA id 40ab5ea1 (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO) for <9front@9front.org>; Fri, 29 Mar 2024 14:23:22 -0500 (CDT) Message-ID: <12cecc25-2ab7-4745-896c-ff057900ed3d@posixcafe.org> Date: Fri, 29 Mar 2024 14:23:52 -0500 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird To: 9front@9front.org References: <20240324195742.15746b88@coaster> Content-Language: en-US From: Jacob Moody In-Reply-To: <20240324195742.15746b88@coaster> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit List-ID: <9front.9front.org> List-Help: X-Glyph: ➈ X-Bullshit: content-addressed configuration scripting markup control Subject: Re: [9front] [PATCH] ktrans: fix Korean input Reply-To: 9front@9front.org Precedence: bulk On 3/24/24 05:57, npmania wrote: > Before applying the patch, /lib/ktrans/hangul.map file has to be > replaced with new one to work properly. The file was generated to > provide correct mapping between QWERTY and Dubeolsik layout. Due to > it's size, I have uploaded it on: > http://okturing.com/src/19014/body > > This patch implements two specific behaviors of Dubeolsik layout. > > dubeollkup function makes Jongseong(final consonant) to be treated as > Choseong(initial consonant) when possible. For example, QWERTY input > "zhem" in Dubeolsik has to be "코드", not "콛ㅡ" where switched > Jongseong is "ㄷ". > > dubeolbksp function emits out syllable remaining after single > backspace. So when user presses backspace on "코드", the expected output > is "코ㄷ", still allowing user to edit latter syllable, rather than > "코" without dubeolbksp. This should only apply to last syllable > considering it's de facto in Dubeolsik implementations. Absolutely fantastic work, thank you so much for taking the time to help fix this. I very much appreciate the new test cases. I will apply this very soon, I have a collection of other ktrans work I am hacking on currently. Thank you, moody