diff options
author | Andre Souto <suoto@users.noreply.github.com> | 2020-08-06 13:20:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-06 13:20:54 +0100 |
commit | 5b3da60cea542aa16c0bf9ea084242df834b2a7a (patch) | |
tree | afdc70356691024f71d940d8a2310a4abd547820 /ale_linters/vhdl/hdl_checker.vim | |
parent | 711c90c523bedcd644386e253d0840e0a9fc684e (diff) | |
download | ale-5b3da60cea542aa16c0bf9ea084242df834b2a7a.zip |
Adds hdl_checker LSP support (#2804)
* Added hdl_checker support
* Added hdl_checker tests
HDL Checker searches for files when no config file is found, which could lead to very long searches when the user is not really on a project setting
Diffstat (limited to 'ale_linters/vhdl/hdl_checker.vim')
-rw-r--r-- | ale_linters/vhdl/hdl_checker.vim | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ale_linters/vhdl/hdl_checker.vim b/ale_linters/vhdl/hdl_checker.vim new file mode 100644 index 00000000..c9d306b3 --- /dev/null +++ b/ale_linters/vhdl/hdl_checker.vim @@ -0,0 +1,5 @@ +" Author: suoto <andre820@gmail.com> +" Description: Adds support for HDL Code Checker, which wraps vcom/vlog, ghdl +" or xvhdl. More info on https://github.com/suoto/hdl_checker + +call ale#handlers#hdl_checker#DefineLinter('vhdl') |