我使用IntelliJ Ultimate和BashSupport为我的项目在Bash中编写构建脚本。当我编写一个shell脚本(调用另一个shell脚本中定义的函数)时,IDE不会突出显示和识别此函数。
与全局变量相同。
scripts.sh看起来像
#!/bin/bash
. "common/remote.sh"
echo "do something"
dosomething "foo"
common / remote.sh看起来像
#!/bin/bash
function dosomething {
echo $1
}
有没有办法告诉插件或IDE从其他脚本中识别这些功能?