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:
parent
abe997e5e0
commit
c380c9394a
2 changed files with 8 additions and 0 deletions
|
@ -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.
|
||||
|
||||
|
|
5
Completion/Unix/Command/_bibtex
Normal file
5
Completion/Unix/Command/_bibtex
Normal 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)'
|
Loading…
Reference in a new issue