Take the YAML below as example, if I trigger the content-assist command Alt+/ when the cursor is between the curly braces of ${}, it would be better to provide proposals like server.port, spring.application.name, spring.cloud.consul.host and spring.cloud.consul.port.
server:
port: 8006
spring:
application:
name: dadada
cloud:
consul:
host: localhost
port: 8500
discovery:
service-name: ${spring.application.name}
By the way, I notice that STS4 doesn't have the Quick Fix proposals like Add @Autowired to field variable while STS3 has. Was it possible to integrate this feature into STS4?