[deleted]

component AAA
port (
        i1 : in  std_ulogic;
        i2 : in  std_ulogic;
        o1 : out std_ulogic;
        o2 : out std_ulogic);
end component AAA;

to become:

inst_AAA :  AAA
port map (
        i1 => in ,
        i2 => in ,
        o1 => out,
        o2 => out);


[deleted]

        :'<,'>s/std_ulogic;/,
        :*s/:/=>


[deleted]
Tim,

Trying your answers I have the following questions/suggestions:
The second subtition std_ulogic is not always std_ulogic
Can you rewrite it that:
In this range:
- delete on every line everything after the :
- subtitute : with => ,
- place this on a smap <F11> <C-G>: [here the Tim-genius stuff]

In selectemode then I can select the range and press F11 to do your magic.

Rgds,
Eric
A simple vimmer

_________________________________________________________________
Watch free concerts with Pink, Rod Stewart, Oasis and more. Visit MSN Presents today. http://music.msn.com/presents?icid=ncmsnpresentstagline&ocid=T002MSN03A07001

Reply via email to