-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Attempt to let the cursor show up in the preedit area. #7883
base: master
Are you sure you want to change the base?
Conversation
BTW (out of topic): I suggest using "cargo fmt" in lieu of "rustfmt". |
P.S.: I doubt whether |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just some minor things I've noticed.
@kchibisov are you able to review this PR? I'm not really familiar with IME so you're probably better suited to confirm whether this behavior is correct.
This reverts commit e4c86fa.
This PR needs is currently on hold until the following upstream issue gets resolved: |
Changed it to draft to better indicate its status. Feel free to change it back once that is resolved. |
Regardless, I don't think it's a correct resolution, from the current logic it's intended that the cursor is hidden at the end of the input, since that's how most IMEs I've used are doing so. However when you start moving it around, you should see the |
@kchibisov I've never used IME, but why wouldn't it just always be a beam cursor? |
Assuming I understood the premise of this PR right, this seems to be something where different platforms have somewhat different conventions. On macOS I agree with @kchibisov that the cursor should not be shown. Here's what macOS does with the Japanese IME in TextEdit: (typed the whole span, pressed space once to convert to kanji, then pressed shift+left 4 times to get the split shown in the screenshots, then right once to shift focus to the segment on the right) No cursor, only an underline. But if you press shift-left (or right) you can shorten or extend the currently active segment of the preedit candidate to change individual segments. I think this is what the Alacritty already seems to have the right behaviour, it just does not draw the thickened underline under the active segment (when there is one - the first press on shift+left turns the whole candidate into a single active segment). Firefox does not thicken the line, but instead indicates the active segment with a strong color and the inactive ones with a weak one, which is arguably more readable than TextEdit: |
Yeah, there should be some sort of selection, which is there on e.g. linux if the cursor is not right at the end, etc. The PR targets macOS, so demanding cursor at the end maybe some IME specific on macOS? with japanese IMEs I've never seen a cursor at the end, it's always like on a screenshot and I've sued both linux and macOS stuff. The only place where I've seen the |
Probably to indicate that you're not actually editing the text? Since you can not move this cursor forward even if you have words forward? So it's just underline + some highlight when moving back to indicate selection. what we do is what 99% terminals do, so it's more or less consistent. And it's the same regardless of OS from what I've seen. |
Feel free to close if you think the current behavior is correct and the patch is not. |
Quoting @jansol 's text:
Here's the behavior with default Traditional Chinese Zhuyin IME on macOS: The cursor is always shown as long as the ICB (preedit) is shown. Whether the cursor is shown or not should be commanded by the IME, and IMKTextInput client should just follow IME's orders. cc @kchibisov |
Hm right, looks like the Pinyin IME also shows a cursor instead of a segmented underline. |
@ShikiSuen is this information passed somehow? |
Note that macOS tend to hide the in-ICB cursor if the ICB underline is segmented and at least 1 segment has thickened / emphasized underline. The case mentioned in this reply (McBopomofo) uses thick underline segment in Marking state, and the cursur is invisible in such case: |
This solves #7849
However, there are other following issues that need to be solved (which is not included in this PR):
#7881
#7882
Also, the
display.ime.preedit()
has insane values. See my first reply in the issue 7881 for more information. Once 7881 gets fixed, I believe that the modifications in this PR needs extra fixes.P.S.: This PR also updates the gitIgnore to exclude metadata files generated by JetBrain RustRover (an IDE for Rust).