finish convert to hostname

This commit is contained in:
Olivier Gagnon
2021-10-07 17:55:49 -04:00
parent 2958034ad4
commit 7d0536a4d2
37 changed files with 211 additions and 314 deletions
@@ -224,7 +224,6 @@ export function determineAllPossibilitiesForTabCompletion(
if (isCommand("scp") && index === 1) {
for (const server of GetAllServers()) {
allPos.push(server.ip);
allPos.push(server.hostname);
}
@@ -247,7 +246,6 @@ export function determineAllPossibilitiesForTabCompletion(
if (serv == null) {
continue;
}
allPos.push(serv.ip);
allPos.push(serv.hostname);
}