jikjoo / vscode-verilog-hdl-support

Verilog HDL/SystemVerilog support for VS Code
MIT License
0 stars 0 forks source link

[BUG] Incomplete symbol providers #2

Closed jikjoo closed 5 years ago

jikjoo commented 5 years ago

Without Ctags, using Regex, cannot detect some symbols. For example,

module TPmem
#( parameter BW = 11 )

(  input [8*BW-1:0]  i_data,
   input       i_enable,
   input       i_clk,
   input       i_Reset,
   output reg [8*BW-1:0] o_data,
   output reg      o_en
);

reg [4-1:0]  counter, not_detected ;

i_enable, not_detected are not detected.

jikjoo commented 5 years ago

3 으로 해결