Accessibility Improvement - Cursor Locator #10210
Replies: 4 comments
-
I'll check out the source code as soon as I get a chance to see if I can get something like this up and running. |
Beta Was this translation helpful? Give feedback.
-
Cursorline was merged recently which might provide the horizontal component of this: #2170 |
Beta Was this translation helpful? Give feedback.
-
@jquesada2016 I've never heard of a cross-hair or box around the cursor, but that sounds interesting. Below are the settings to the most common solution I've seen, commonly named This is on the latest, Here's the setting to enable it. [editor]
cursorline = true https://docs.helix-editor.com/master/configuration.html?highlight=cursorline#editor-section And here are the settings in the theme documentation (you would need to create your own or edit an existing). https://docs.helix-editor.com/master/themes.html?highlight=cursorline#Interface |
Beta Was this translation helpful? Give feedback.
-
@AceofSpades5757 Yeah, not in a terminal editor. It's something that has always stopped me from using vim in the past. The cursor jumps around and I always loose it. It is very common, however, for accessible software aids targeting the visually impaired. |
Beta Was this translation helpful? Give feedback.
-
An issue which is very often overlooked for visually impaired users is a cursor locating strategy. Ideally, I would hope this would be something possible when the eventual plugin system is rolled out for maximum customizability.
This is just a mechanism for quickly locating where the cursor is on the screen. The easiest way to achieve this is to draw an n-by-n crosshair or rectangle around the cursor. This can be persistent, toggled, or only shown while holding down some special key, such as CTRL.
there are many other possible strategies too, such as hiding all text on the screen except for the current line, etc.
Beta Was this translation helpful? Give feedback.
All reactions