Skip to content

Commit

Permalink
Extend TOML example (#223)
Browse files Browse the repository at this point in the history
* Add is_third_party to TOML example

* Add wildcard to TOML example

* Give third party disabled warning example
  • Loading branch information
Xcodo committed Nov 13, 2023
1 parent b447ba4 commit 5e322f6
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,19 @@ lib1.files = [
'pkg1.vhd',
'tb_ent.vhd'
]

# Wildcards are supported
lib3.files = [
'test/*.vhd',
'src/*.vhd',
'src/*/*.vhd',
]

# Libraries can be marked as third-party to disable some analysis warnings, such as unused declarations
UNISIM.files = [
'C:\Xilinx\Vivado\2023.1\data\vhdl\src\unisims\unisim_VCOMP.vhd',
]
UNISIM.is_third_party = true
```

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

0 comments on commit 5e322f6

Please sign in to comment.