Skip 100mb files

pull/296/head
Anton Medvedev 2 months ago
parent 38e9fea494
commit 287fd87794

@ -125,8 +125,8 @@ func doComplete(compLine string, compWord string) {
return
}
// If input is bigger than 1MB, skip completion.
if len(input) > 1024*1024 {
// If input is bigger than 100MB, skip completion.
if len(input) > 100*1024*1024 {
return
}

Loading…
Cancel
Save