From 365887539b9e1e01f7892c8ce8b27bbe856c220a Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Thu, 19 May 2016 21:46:27 +0100 Subject: [PATCH] Reject '//' as a file completion prefix to avoid cygwin network hosts listing --- src/insert_completer.cc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/insert_completer.cc b/src/insert_completer.cc index ba77e515..39baee03 100644 --- a/src/insert_completer.cc +++ b/src/insert_completer.cc @@ -205,6 +205,11 @@ InsertCompletion complete_filename(const SelectionList& sels, if (require_slash and not contains(prefix, '/')) return {}; + // Do not try to complete in that case as its unlikely to be a filename, + // and triggers network host search of cygwin. + if (prefix.substr(0_byte, 2_byte) == "//") + return {}; + InsertCompletion::CandidateList candidates; if (prefix.front() == '/' or prefix.front() == '~') {