Describe the bug
Auto complete is used when pressing the enter key. This is annoying behaviour, because often a new line is meant instead of using the auto complete suggestion. tab is already configured to be used for autocomplete, why have two keys?
Proposed Fix
Make the auto complete use 1 key (preferably tab) and make it configurable in a setting.
To Reproduce
With the following code, manually write the architecture of the entity, and observe that when writing is, it suggests ieee.std_logic_1164.all, and pressing enter fills it in.
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;
use ieee.math_real.all;
entity test is
port (
clk : in std_logic;
reset : in std_logic;
);
end entity test;
Please complete the following information:
- OS: Win 11
- VSCode version: 1.108
- TerosHDL version: 7.0.3
Describe the bug
Auto complete is used when pressing the
enterkey. This is annoying behaviour, because often a new line is meant instead of using the auto complete suggestion.tabis already configured to be used for autocomplete, why have two keys?Proposed Fix
Make the auto complete use 1 key (preferably
tab) and make it configurable in a setting.To Reproduce
With the following code, manually write the architecture of the entity, and observe that when writing
is, it suggestsieee.std_logic_1164.all, and pressingenterfills it in.Please complete the following information: