Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

nimsuggest: move library code into suggest #892

Merged
merged 5 commits into from
Sep 16, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions compiler/tools/suggest.nim
Original file line number Diff line number Diff line change
Expand Up @@ -484,6 +484,9 @@ proc findTrackedSym*(g: ModuleGraph;): PSym =

proc executeCmd*(cmd: IdeCmd, file, dirtyfile: AbsoluteFile, line, col: int;
graph: ModuleGraph) =
## executes the given suggest command for a given file,
## at the position described by line and column.
## If dirtyFile is non-empty, then its contents are used as part of the analysis.
let conf = graph.config
conf.ideCmd = cmd
var isKnownFile = true
Expand Down