|
@@ -0,0 +1,50 @@
|
|
1
|
+# VHDL-Tool
|
|
2
|
+
|
|
3
|
+[VHDL-Tool](https://www.vhdltool.com/) provides a [language server](https://github.com/Microsoft/language-server-protocol) for the VHDL hardware description language. This plugin makes VHDL-Tool's language server interface available from within Atom.
|
|
4
|
+
|
|
5
|
+**This is beta quality code. Report bugs here: https://git.vhdltool.com/vhdl-tool/vhdltool-atom.**
|
|
6
|
+
|
|
7
|
+To use this plugin, you must first [download](https://www.vhdltool.com/download) VHDL-Tool. See the requirements section.
|
|
8
|
+
|
|
9
|
+For now, only Linux is supported.
|
|
10
|
+
|
|
11
|
+## Features
|
|
12
|
+
|
|
13
|
+* Syntax checking
|
|
14
|
+* Go to definition
|
|
15
|
+* Find references
|
|
16
|
+* Browse file symbols
|
|
17
|
+* Basic autocompletion
|
|
18
|
+
|
|
19
|
+## Screenshots
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+## Usage
|
|
24
|
+* F12 - go to definition
|
|
25
|
+* Ctrl-Shift-F10 - peek definition
|
|
26
|
+* Shift-F12 - find references
|
|
27
|
+* Ctrl-Shift-o - find symbol in current file
|
|
28
|
+* Syntax checking occurs on save and the first time a file is opened
|
|
29
|
+* Autocompletion happens automatically when you type
|
|
30
|
+
|
|
31
|
+## Requirements
|
|
32
|
+
|
|
33
|
+Before using this plugin, you must ensure that the `vhdl-tool` binary is installed on your system. To install `vhdl-tool` and setup your environment, do the following:
|
|
34
|
+
|
|
35
|
+1. Install this plugin.
|
|
36
|
+2. Download the `vhdl-tool` binary from [here](https://www.vhdltool.com/download), make sure it has execute permissions, and put it somewhere in your $PATH.
|
|
37
|
+3. Create a vhdltool-config.yaml configuration file for your project by following the instructions [here](https://www.vhdltool.com/configuration).
|
|
38
|
+4. Install one of the other VHDL plugins available in the marketplace for syntax highlighting. Search for VHDL in the extensions sidebar. **This step is compulsory as these plugins define the VHDL language and if VSCode does not know about VHDL it cannot launch the language server**.
|
|
39
|
+5. Launch VSCode and open the folder containing the configuration file created in the previous step.
|
|
40
|
+
|
|
41
|
+## Known Limitations
|
|
42
|
+* The go to definition and find references commands are not accurate in the presence of overloading. In the case of multiple overloaded identifiers with the same name, the type correct one may not be chosen.
|
|
43
|
+* No VHDL 2008 support yet.
|
|
44
|
+
|
|
45
|
+## Release Notes
|
|
46
|
+
|
|
47
|
+### 0.0.1
|
|
48
|
+
|
|
49
|
+Initial beta release of VHDL-Tool.
|
|
50
|
+
|