1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-02 10:01:11 +02:00

37663: New bibtex completion (very minimal).

This commit is contained in:
Daniel Shahaf 2016-01-18 02:35:35 +00:00
parent abe997e5e0
commit c380c9394a
2 changed files with 8 additions and 0 deletions

View file

@ -1,5 +1,8 @@
2016-01-18 Daniel Shahaf <d.s@daniel.shahaf.name>
* 37663: Completion/Unix/Command/_bibtex: New bibtex completion
(very minimal).
* unposted: Doc/Zsh/zle.yo: docs: zshzle(1): Trivial
clarification to $CONTEXT.

View file

@ -0,0 +1,5 @@
#compdef bibtex
# bibtex only works when the *.aux file exists, but complete the *.tex file in
# case it hasn't been compiled yet.
_files -g '*.(aux|tex)(:r)'