【发布时间】:2015-07-26 10:44:46
【问题描述】:
gnu/make 在 makefile 中支持非拉丁标识符(例如,目标)。
示例:
$ cat GNUmakefile
test:
@echo test
тест:
@echo test in russian
$ make test тест
test
test in russian
但是这个例子的 bash-completion 只完成了一个目标——test:
"make" + tab → "make test"。
如何将非拉丁目标添加到完成列表中?
使用不同版本的bash-completion在各种发行版列表(debian 5-8、ubuntu 12-15、centos 5-6、mandriva 2008)上进行了测试。
我至少需要最新版本的 bash-completion 支持此功能。
【问题讨论】:
-
请在您的问题中添加操作系统/发行版和版本。
-
@Cyrus,我已经更新了问题。
标签: bash gnu-make bash-completion