Nim: Add code completion with NimSuggest

This patch add basic support for completion by using
the NimSuggest executable.
The user is expected to configure the path to NimSuggest
by using the new tools configuration page in the Nim
settings.
For now we don't support advanced completion of function
parameters. This will be added in further patches.

Change-Id: I5097ee2b3992486071591109c400d9c84da5fc00
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
Reviewed-by: hjk <hjk@qt.io>
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
Filippo Cucchetto
2018-12-23 15:18:06 +01:00
parent 1f974bdbbf
commit 4f6ce9d614
26 changed files with 2108 additions and 22 deletions

View File

@@ -57,7 +57,6 @@ private:
void collectProjectFiles();
void updateProject();
QStringList m_files;
QStringList m_excludedFiles;
QFutureWatcher<QList<ProjectExplorer::FileNode *>> m_futureWatcher;
QElapsedTimer m_lastProjectScan;