You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The language server expects verible.filelist to list all verilog files to index symbols and the file needs to be generated by the user manually. It would be better if vscode extension generated the verible.filelist and ideally and maintains the file list.
Proposal
Update the vscode extension as follows:
Add a command to generate verible.filelist. Settings should allow users to set an include and exclude glob patterns. Write the file to the root of the project directory.
On extensions start, check the existence of verible.filelist, and generate if not found. Settings should allow the users to enable/disable automatic generation of verible.filelist.
Hook the generate verible.filelist command to file events in the workspace. There seem to be event handlers for onDidCreateFiles, onDidDeleteFiles, onDidRenameFiles.
The text was updated successfully, but these errors were encountered:
The language server expects verible.filelist to list all verilog files to index symbols and the file needs to be generated by the user manually. It would be better if vscode extension generated the verible.filelist and ideally and maintains the file list.
Proposal
Update the vscode extension as follows:
The text was updated successfully, but these errors were encountered: