Make DocumentLink::range narrower

Thanks to Riatre #135
This commit is contained in:
Fangrui Song 2018-11-24 09:49:58 -08:00
parent 0f0c328a91
commit 19d38bc1d2

View File

@ -78,13 +78,22 @@ MAKE_REFLECT_STRUCT(DocumentLink, range, target);
void MessageHandler::textDocument_documentLink(TextDocumentParam &param, void MessageHandler::textDocument_documentLink(TextDocumentParam &param,
ReplyOnce &reply) { ReplyOnce &reply) {
QueryFile *file = FindFile(reply, param.textDocument.uri.GetPath()); QueryFile *file = FindFile(reply, param.textDocument.uri.GetPath());
if (!file) WorkingFile *wf = file ? wfiles->GetFileByFilename(file->def->path) : nullptr;
if (!wf) {
reply.Error(ErrorCode::InternalError, "not opened");
return; return;
}
std::vector<DocumentLink> result; std::vector<DocumentLink> result;
for (const IndexInclude &include : file->def->includes) for (const IndexInclude &include : file->def->includes)
result.push_back({lsRange{{include.line, 0}, {include.line + 1, 0}}, if (std::optional<int> bline =
DocumentUri::FromPath(include.resolved_path)}); wf->GetBufferPosFromIndexPos(include.line, nullptr, false)) {
const std::string &line = wf->buffer_lines[*bline];
auto start = line.find_first_of("\"<"), end = line.find_last_of("\">");
if (start < end)
result.push_back({lsRange{{*bline, (int)start + 1}, {*bline, (int)end}},
DocumentUri::FromPath(include.resolved_path)});
}
reply(result); reply(result);
} // namespace ccls } // namespace ccls