fix(tui): make use of server dir path for file references in prompts (#13781)

This commit is contained in:
OpeOginni
2026-02-16 20:14:08 +01:00
committed by GitHub
parent ae6e85b2a4
commit 16332a8583

View File

@@ -247,7 +247,8 @@ export function Autocomplete(props: {
const width = props.anchor().width - 4
options.push(
...sortedFiles.map((item): AutocompleteOption => {
const fullPath = `${process.cwd()}/${item}`
const baseDir = (sync.data.path.directory || process.cwd()).replace(/\/+$/, "")
const fullPath = `${baseDir}/${item}`
const urlObj = pathToFileURL(fullPath)
let filename = item
if (lineRange && !item.endsWith("/")) {