An issue with jumping cursor
See original GitHub issue- I tried running
code --disable-extensions
and the issue did NOT present itself.
Issue
Visual Studio Code | editorconfig-vscode | |
---|---|---|
Version | 1.44 | latest available on the marketplace 0.14.5 |
Root .editorconfig
File
# S.a. https://editorconfig.org/
root = true
[*]
indent_style = space
end_of_line = lf
charset = utf-8
indent_size = 2
trim_trailing_whitespace = true
insert_final_newline = true
# 4 space indentation
[*.py]
indent_style = space
indent_size = 4
Are there any other relevant .editorconfig
files in your project? Yes / No
Visual Studio Code Setting | Default | User | Workspace |
---|---|---|---|
editor.insertSpaces |
true |
____ |
____ |
editor.tabSize |
4 |
_ |
_ |
editor.trimAutoWhitespace |
true |
____ |
____ |
files.autoSave |
"off" |
on | on |
files.insertFinalNewline |
false |
_____ |
_____ |
files.trimTrailingWhitespace |
false |
_____ |
_____ |
Additional comments or steps to reproduce
I am facing an issue that when I programming on Python file, cursor starts to jump backwards. Particularly when writing very fast, the only solution for me is to turn it off.
For example:
“abcdgtgh|”
where | is current location of the cursor
all of the sudden jumps to
“ab|cdgtgh”
Is anybody else seeing this behavior with Python. I am very confident that this has something to do with this plugin.
Issue Analytics
- State:
- Created 3 years ago
- Comments:9 (1 by maintainers)
Top Results From Across the Web
Computer Cursor Keeps Jumping Around – What To Do - Alphr
There could be several reasons why your cursor is jumping around. It could be an issue with the mouse, with the mouse driver, ......
Read more >How to Fix Mouse Cursor Jumping or Moving Randomly While ...
Check that box. ... Click Start > Settings > Devices > Mouse > Additional mouse options. Click on the Pointer Options tab and...
Read more >5 Ways to Fix Mouse Cursor Jumping Around in Windows 10
How can I fix the mouse if it's jumping around on Windows 10? · 1. Check for hardware issues · 2. Adjust touchpad...
Read more >Mouse Cursor jumps or moves randomly while typing in ...
If the cursor moves by itself, it implies that you have some problems with the Touchpad or mouse. If you are using a...
Read more >Fix Mouse Cursor jumping around in Windows 10 / 11
Fix Mouse Cursor jumping around in Windows 10 / 11 · Solution 1] Disable pointer precision · Solution 2] Shift the router away...
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
Im seeing this as well with PHP. I disabled all plugins except for this one and this issues only appears when I have this plugin enabled.
There was an issue with this extension performing
TextEdit
operations when it shouldn’t have. After #292, this should only happen if there are actual changes that the extension needs to make (way less frequently), as it saves your current selections, applies the edits and then restores your original selections. This explains why the issue presents itself when you are typing fast with auto-save turned on.Auto-saving every 1 second sounds extremely aggressive to me, but I think y’all would be more upset if your selections weren’t preserved. I think I need to close this as a won’t fix, unless someone has some brilliant ideas.