mirror of
https://github.com/microsoft/vscode.git
synced 2026-08-19 14:22:19 +01:00
@@ -389,7 +389,7 @@ function Send-Completions {
|
||||
# Add `../ relative to the top completion
|
||||
$firstCompletion = $completions.CompletionMatches[0]
|
||||
if ($firstCompletion.CompletionText.StartsWith("..$([System.IO.Path]::DirectorySeparatorChar)")) {
|
||||
if ($completionPrefix -match "(\.\.$([System.IO.Path]::DirectorySeparatorChar))+") {
|
||||
if ($completionPrefix -match "(\.\.\$([System.IO.Path]::DirectorySeparatorChar))+") {
|
||||
$parentDir = "$($matches[0])..$([System.IO.Path]::DirectorySeparatorChar)"
|
||||
$currentPath = Split-Path -Parent $firstCompletion.ToolTip
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user