Closed
Description
consider the scenario where you have a variable defined, and then you want to use that variable from within quotation marks:
my_var="world"
echo "hello $my_var"
Is it possible to do code completion when you type part of that variable name, consider:
If you type echo "hello $my_"
, can you get code completion to show up for variables that match my_
Is this something that the vscode-client
extension can potentially do, or is this an issue with vscode itself?