Plugin Shell Script doesn't complete variable names all times
#! /bin/sh
var1="hello"
var2="world"
if [[ $v == "test" ]]; then
echo "test is equal..."
fi
on press strg+space at "$v" for code completion the result is "no sugesstions".
This always happens on case and for statements.
请先登录再写评论。