rust_hdl icon indicating copy to clipboard operation
rust_hdl copied to clipboard

Results 112 rust_hdl issues
Sort by recently updated
recently updated
newest added

# Terminology A declarative part contains declarations. For the purpose of recovery we divide declarations into two categories. - Compound - may contain nested declarative parts, example subprograms, protected type...

There is uncertainty in the standard regarding externally visible generics: Se GHDL issue: https://github.com/ghdl/ghdl/issues/440 ```vhdl package gpkg is generic (const : natural); end package; package ipkg is new work.gpkg generic...

Hi, I've started using this language server recently, and it's incredible how sophisticated it is compared to all I've previously tried. However running the LSP on the codebase I work...

I'd appreciate a feature that allows to mute a warning/error and/or disable lint checking/code analysis for particular lines. Maybe to mute particular lines, we could add for example some kind...

enhancement

Hi guys, first of all, thank you very much for your valuable contribution. **Feature Description:** Once again something floated in my mind and I thought I propose 2 similar ideas...

enhancement
VHDL
language server

I suggest that you should rename it into something like vhdl-lsp or vhdl-rust-lsp.

![redefined_library](https://github.com/VHDL-LS/rust_hdl/assets/116195279/44218fe8-20a2-4bb9-a1eb-8b35d2a9d93b) Why do we need this warning?

**Feature Description** : Let user add a list of files for which no errors/warnings should be raised. **Feature Usecase** : Defining libraries in "vhdl_ls.toml" which raise tons of errors due...

**Bug description:** Hi guys, the following errors are reported for the snippet below: `Expected '{identifier}'` and `Expected 'library', 'use', 'context', 'entity', 'architecture', 'configuration' or 'package'` It seems to be that...

bug

In my source files, instances are declared the following way: ```vhdl MUX_INST : entity work.MUX_1_NBIT port map( DATA_0 => data_in_0, DATA_1 => data_in_1, SELECTOR => selector_in, RESULT => data_out );...