Skip to content

Commit 73a99f1

Browse files
authored
set the auto_refresh_time_delay to 0 on Windows as well since it is not needed with bracket paste being supported (#59827)
1 parent f73700d commit 73a99f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/REPL/src/options.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Options(;
4747
auto_indent_tmp_off = false,
4848
auto_indent_bracketed_paste = false,
4949
auto_indent_time_threshold = 0.005,
50-
auto_refresh_time_delay = Sys.iswindows() ? 0.05 : 0.0,
50+
auto_refresh_time_delay = 0.0, # this no longer seems beneficial
5151
hint_tab_completes = true,
5252
iocontext = Dict{Symbol,Any}()) =
5353
Options(hascolor, extra_keymap, tabwidth,

0 commit comments

Comments
 (0)