gnu/make supports non-latin identifiers (f.e., targets) in makefile.
example:
$ cat GNUmakefile
test:
@echo test
тест:
@echo test in russian
$ make test тест
test
test in russian
but the bash-completion with this example completes only one target — test
:
"make " + tab → "make test".
how to add non-latin targets to completion list?
tested on various list of distributions (debian 5-8, ubuntu 12-15, centos 5-6, mandriva 2008) with different versions of bash-completion.
i need support for this feature at least with recent version of the bash-completion.