-
Notifications
You must be signed in to change notification settings - Fork 715
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
Display Control Characters as ^A, ^M #2936
Comments
There are Unicode symbols specifically designed for rendering control characters, but the traditional In the mean time, I have a thing in the status-bar to show the codepoint of the character under the cursor, which helps me verify what I'm looking at. |
We're on the same page. I think the ^ notation is the practical choice since fonts implementing the control code stand-in characters seem uncommon.
This is definitely helpful for some use cases, and i'll be using it, but unfortunately for me verifying a message would mean moving the cursor over each unknown character vs just looking. |
Previously, all ASCII control characters would be shown as the replacement character. This leads to a visual loss of information and ambiguities, particularly when opening files that contain lots of control characters (or binary files). Use the common circumflex notation, known from software such as `cat -v` or vim, instead. Fixes mawww#2936
This is a feature request:
When using kakoune, ascii control characters display as a generic non-displayable unicode character:
using another editor I get this which is more useful for me:
I'd like it if kakoune could render the control characters like that so I can distinguish between them. (I think there may be fonts out there that can render them, but none of the ones I've tried work - Droid Sans, Liberation Sans, Source Code Pro.)
Thanks for considering my request
The text was updated successfully, but these errors were encountered: