VHDL code:
p_ABS : process(CLOCK,RESET)
begin
if RESET = '1' then
ASIGNAL <= (ASIGNAL'high => '1', others => '0');
elsif rising\_edge\(CLOCK\) then
end if;
end process P_ABS;
If you place your cursor immediately after the 'begin' keyword and then Navigate>Go To > Matching Bracket
the cursor jumps to the 'end if' line. It should jump to the 'end process' line.