Rendering random characters
See original GitHub issueRandom characters are sometimes rendered in place of true characters (the code is still correct when I run it, but doesn’t display correctly). If I highlight the wrongly displayed characters and then unhighlight, the error corrects itself. It’s really random when it happens and I don’t know how best to reproduce it. However, this has happened on two of my machines running Windows 10 and 11.
Rendered wrong: True text:
Rendered wrong: True text:
- VS Code Version:
1.68.1
30d9c6cd9483b2cc586687151bcbcd635f373630
x64
-VSCode Neovim Version: v0.0.87
- OS Version:
Edition Windows 10 Pro
Version 21H2
Installed on 3/19/2021
OS build 19044.1766
Experience Windows Feature Experience Pack 120.2212.4180.0
Steps to Reproduce:
- Open a python file in VS Code with the “VSCode Neovim” extension
- Write code for a while, then random characters will be rendered in place of true characters.
Issue Analytics
- State:
- Created a year ago
- Reactions:16
- Comments:17 (4 by maintainers)
Top Results From Across the Web
random characters appearing when site is rendered
On a couple sites I've made random ASCII characters have been appearing in the middle of the document. It's always been on test...
Read more >How To Procedurally Randomize Background Characters ...
Randomizing Characters Procedurally In The Material / Shader Editor. ... Random Hair Color Node (Beginner) 40:10 Random Generator Node ...
Read more >Hyper Realistic Character Rendering | Tutorial - YouTube
How I Render my CG Characters in MayaHead to https://squarespace.com/jhill to save 10% off your first purchase of a website or domain using ......
Read more >Mojibake - Wikipedia
Symptoms of this failed rendering include blocks with the code point displayed in hexadecimal or using the generic replacement character.
Read more >Weird characters like â are showing up on my site - Blog
Most likely there is a Character set problem. It can occur when a MySQL and PHP are upgraded or when data has been...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I can reproduce it . #1075 will fix that.
Hi, I am experiencing this issue as well with Version 1.73 of VSCode and neovim v0.8.0 My vscode-neovim plugin page states ‘last modified: 08/11/2022, 08:07:47’ (I could not figure out how to get the version number for the plugin)
init.lua
config path toNONE
then I do not experience the issue.NONE
I still do not experience this issue. (even with multiple linters installed, like Prettier, and markdownlint when editing markdown files)init.lua
without any extensions; I begin to experience the issue (albeit less frequently than when I have vscode linting plugins andinit.lua
enabled).autocmd
s and almost all keymaps (some of them with<c-...>
do not like running inside vscode) the issue is pretty much gone.So, I think it is most likely issues in the users
init.lua
. (Maybe this answer will help someone experiencing this issue as well.)I also find that the vscode-neovim performs much worse in general when my config is loaded (even with most things removed) Narrowing down what options need to be excluded with
if vim.g.vscode then ...
is quite a process if you already had a beefyinit.lua
and I think I need to work through my config again with the setup guide in the README and try to useVSCodeCall
/VSCodeNotify
as recommended.In case this is still considered a bug (doubt) Here is a file that I was testing with. It mostly happens when changing between modes and doing short inserts and quick movements around syntax elements like
-
,##
,1.
etc. and the issue is worse with larger files, and files with more syntax elements like code files.