Sublime Forum

Overwrite @3156

#1

Since last update (or few last updates), Sublime goes crazy and randomly is turning on overwrite mode (insert). It happens mostly when I am using search or find and replace, but also randomly. I’ve changed keyboard to new one, keyboard bindings (removed all overwrite shortcuts), removed and reinstalled ST, removed all plugins, nothing helps. It was a problem few years ago too. It makes it unusable.
Strange thing - it is sometimes turning on overwrite mode, when I change it back - cursor is normal again, but overwrite mode isn’t off. I have to close and reopen file or restart sublime sometimes, cause it happens on all opened tabs.
I have feeling that overwrite mode problems everytime they seem fixed then are returning every few builds.

windows 10, ST build 3156

0 Likes

#2

maybe you have Vintage mode enabled or something? can you show a screenshot of your entire ST window when overwrite mode is enabled?

2 Likes

#3

sure
https://content.screencast.com/users/baael/folders/Jing/media/e57d3f37-fcd6-4d91-85ca-4ae772395f39/2018-02-01_1555.png

My bindings:

[
{ “keys”: [“ctrl+shift+delete”], “command”: “run_macro_file”, “args”: {“file”: “res://Packages/Default/Delete Line.sublime-macro”} },
{ “keys”: [“ctrl+delete”], “command”: “run_macro_file”, “args”: {“file”: “res://Packages/Default/Delete Line.sublime-macro”} },
{ “keys”: [“ctrl+shift+k”], “command”: “run_macro_file”, “args”: {“file”: “res://Packages/Default/Delete Line.sublime-macro”} }
]

My settings:

{
“caret_extra_bottom”: 1,
“caret_extra_top”: 1,
“caret_extra_width”: 1,
“color_scheme”: “Packages/Boxy Theme/schemes/Boxy Tomorrow.tmTheme”,
“default_line_ending”: “unix”,
“font_face”: “Droid Sans Mono”,
“font_options”:
[
“gdi”
],
“font_size”: 8,
“ignored_packages”:
[
“gdi”
],
“indent_guide_options”:
[
“draw_normal”,
“draw_active”
],
“line_padding_bottom”: 6,
“line_padding_top”: 6,
“margin”: 10,
“skin”: “DA UI/Minimal”,
“tab_size”: 2,
“theme”: “DA.sublime-theme”,
“theme_font_lg”: true,
“theme_font_options”:
[
“gdi”
],
“theme_icons_flat”: true,
“theme_icons_materialized”: true,
“theme_size_xs”: true,
“theme_unified”: true,
“translate_tabs_to_spaces”: true,
“trim_trailing_white_space_on_save”: true
}

But!!!
You are right, I had to copy “ignored_packages”: [“Vintage”] into my user settings, and it seems it solved my problem.

1 Like

#4

yeah, the COMMAND MODE in the status bar is a giveaway :slight_smile:

0 Likes