Replies: 1 comment
-
|
ChatGPT answer ;) Thank you for the detailed report and analysis! The issue with I will look into improving For now, your workaround of temporarily toggling |
Beta Was this translation helpful? Give feedback.
-
|
ChatGPT answer ;) Thank you for the detailed report and analysis! The issue with I will look into improving For now, your workaround of temporarily toggling |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I have been using org-modern with the following config for a while now.
I had noticed at times when switching buffers that I would have a hard time locating Point. I would use C-n or C-p to move Point, but not see it sometimes. Today I finally noticed it was when Point was on the edge of a table. I did not see any issues logged here, so I started gptel and asked ChatGPT what it thought about the describe-char on the vertical bar. The answer about the
displaytext property sounds reasonable.Now that I'm aware of it, I can just try moving Point forward instead to get it off the edge of a table or temporarily toggle org-modern-mode.
-----ChatGPT question
In Emacs, what would prevent the Point from blinking when on a vertical bar?
Below is the output of
describe-charThis char was set by
org-modern-modeto make org table borders looksolid. If I turn off that mode the Point will appear again.
-----ChatGPT answer
The point in Emacs may not blink on a vertical bar due to the
displayproperty applied to that character. In the
describe-charoutput youprovided, we see that the vertical bar character has a
displayproperty set to
(space :width (3)). This property effectively replacesthe character with a custom space of a specific width, which may obscure
the point.
When text has a display property that alters how it's rendered, it can
lead to situations where the point doesn't appear to blink because the
character's visual representation is different.
To resolve this, you could either:
org-modern-modesettings to not use a display propertyfor that character, if possible.
To view the blinking point, you'll need to ensure that no such display
properties are interfering with the normal rendering of the point.
Beta Was this translation helpful? Give feedback.
All reactions