Skip to content

Commit 5e322f6

Browse files
authored
Extend TOML example (#223)
* Add is_third_party to TOML example * Add wildcard to TOML example * Give third party disabled warning example
1 parent b447ba4 commit 5e322f6

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,19 @@ lib1.files = [
6161
'pkg1.vhd',
6262
'tb_ent.vhd'
6363
]
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
6477
```
6578

6679
## As an LSP-client developer how should I integrate VHDL-LS?

0 commit comments

Comments
 (0)