You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When having the component written in the architecture that instantiates it, the goto definition goes to the component in the same file, and the goto implementation doesn't do anything. It is impossible to goto the entity definition of b, I'd expect at least one of the gotos to go there.
a.vhd
library ieee;
use ieee.std_logic_1164.all;
library lib;
use lib.all;
entityaisbeginendentity;
architecturertlofaissignal p : std_logic;
componentbisport (
p : std_logic
);
endcomponent;
beginb_inst: bportmap (
p => p
);
endarchitecture;
b.vhd
library ieee;
use ieee.std_logic_1164.all;
entitybisport (
p : instd_logic
);
endentity;
When having the component written in the architecture that instantiates it, the goto definition goes to the component in the same file, and the goto implementation doesn't do anything. It is impossible to goto the entity definition of
b
, I'd expect at least one of the gotos to go there.a.vhd
b.vhd
vhdl_ls.toml
The text was updated successfully, but these errors were encountered: