Questions tagged [ascii]
The ascii tag has no summary.
8 questions
0 votes
0 answers
2k views
How to display ASCII art in Neovim startup screen without plugin?
Here's the ASCII art image I want to display in nvim dashboard: " ", " ⣴⣶⣤⡤⠦⣤⣀⣤⠆ ⣈⣭⣿⣶⣿⣦⣼⣆ ", " ⠉⠻⢿⣿⠿⣿⣿⣶⣦⠤⠄⡠⢾⣿⣿⡿⠋⠉⠉⠻⣿⣿⡛...
0 votes
3 answers
1k views
Search and replace unicode character codes with actual characters
I've got a text file with unicode character codes in it. It looks like this in vim (utf-8[unix]): Samuel i<81>ngel - Euro <80>25 Tomas i<81>lvaro - ©Coca-Cola and dagger <87> ...
1 vote
1 answer
704 views
Vim's "ga" and utf-8 characters: What is <M-x>?
I pasted text A ∩ B into Vim in order to figure out how the "cap" character is represented. Using its code, I would then figure out the right commands to print it out from a data analysis ...
1 vote
1 answer
151 views
Case insensitive sorting doesn't work for non ascii characters
Make a list of these words: Če Čeprav Človeški čaka čakal čakalne čakati časih časovni času če Select all: ggVG and sort them with case insensitive: :sort i Če Čeprav Človeški čaka čakal čakalne ...
1 vote
0 answers
594 views
NeoVim : Can we "insert literally" every ASCII symbol with `<c-v>` ? (including delete `^?` )
In insert or command mode, the printable ASCII chars, like a can be insert with just a (we don't need <c-v> for those ones, but most of them will still work with <c-v>letter ). If I type, ...
2 votes
1 answer
662 views
Can't Copy Non-ASCII Characters
I can't copy Non-ASCII charaters from Neovim anymore when I select them with mouse or crtl + v. For example, I have the Turkish word Bankası written in my editor. When I yank and paste it to somewhere ...
3 votes
1 answer
225 views
Setting to prevent <c-h> to erase text
I have a map which allows me to navigate with hjkl in insert mode: " In insert or command mode, move normally by using Ctrl inoremap <C-h> <Left> inoremap <C-j> <Down> ...
2 votes
1 answer
221 views
What is the green <92> that's in my file?
I have a file exported from some system, and in vi when I open the file, there's a green <92> in it when I open it up where an ' ought to be. It messed up my bash script and left a line that ...