We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b447ba4 commit 5e322f6Copy full SHA for 5e322f6
README.md
@@ -61,6 +61,19 @@ lib1.files = [
61
'pkg1.vhd',
62
'tb_ent.vhd'
63
]
64
+
65
+# Wildcards are supported
66
+lib3.files = [
67
+ 'test/*.vhd',
68
+ 'src/*.vhd',
69
+ 'src/*/*.vhd',
70
+]
71
72
+# Libraries can be marked as third-party to disable some analysis warnings, such as unused declarations
73
+UNISIM.files = [
74
+ 'C:\Xilinx\Vivado\2023.1\data\vhdl\src\unisims\unisim_VCOMP.vhd',
75
76
+UNISIM.is_third_party = true
77
```
78
79
## As an LSP-client developer how should I integrate VHDL-LS?
0 commit comments