Skip to content

Commit

Permalink
fix: unescaped brackets in path
Browse files Browse the repository at this point in the history
  • Loading branch information
arrow2nd committed Feb 3, 2024
1 parent d3104d5 commit 3e87449
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions langserver/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -692,14 +692,21 @@ func replaceCommandInputFilename(command, fname, rootPath string) string {
ext := filepath.Ext(fname)
ext = strings.TrimPrefix(ext, ".")

command = strings.Replace(command, "${INPUT}", fname, -1)
command = strings.Replace(command, "${INPUT}", escapeBrackets(fname), -1)
command = strings.Replace(command, "${FILEEXT}", ext, -1)
command = strings.Replace(command, "${FILENAME}", filepath.FromSlash(fname), -1)
command = strings.Replace(command, "${ROOT}", rootPath, -1)
command = strings.Replace(command, "${FILENAME}", escapeBrackets(filepath.FromSlash(fname)), -1)
command = strings.Replace(command, "${ROOT}", escapeBrackets(rootPath), -1)

return command
}

func escapeBrackets(path string) string {
path = strings.Replace(path, "(", `\(`, -1)
path = strings.Replace(path, ")", `\)`, -1)

return path
}

func succeeded(err error) bool {
exitErr, ok := err.(*exec.ExitError)
// When the context is canceled, the process is killed,
Expand Down

0 comments on commit 3e87449

Please sign in to comment.