zsh-users
 help / color / mirror / code / Atom feed
* 2 things
@ 2004-09-16 13:43 keef
  2004-09-19 20:31 ` Bart Schaefer
  0 siblings, 1 reply; 2+ messages in thread
From: keef @ 2004-09-16 13:43 UTC (permalink / raw)
  To: zsh-users

1)	consider:

zstyle ':completion:*:(vi|m):*' ignored-patterns \
'*.(a|au|bmp|bz2|divx|dvi|gif|gz|jpeg|jpg|mp|mp3|mpeg|mpg|o \
|pdf|png|ps|ra|rar|swx|tar|tar.bz2|tar.gz|tgz|xbm|xpm|Z|zip)'

works great, I cant get enough.
However, I would like to ignore directories as well..
I have tried '*(-/)' '(*/)' and many combinations inbetween but with no
luck whatsoever...

I have auto_param_slash and mark_dirs set... Is this ok ?

Any thoughts on how I might accomplish ignore-directories as well as the
previous extensions?


2)	consider:

/home/niceguy/somedir% ls
wfiles.pdf  xfiles.pdf

in my .zshrc is have an alias -s set up to assocate all pdfs with
xpdf ... so, ideally I would like to type x<TAB><ENTER>
but when that happenes zsh looks through my path and completes binaries

I feel confident that somehow zsh will start matching in pwd ( in
another way than putting . 1st in my path)

so that instead of xp<TAB> <TAB><TAB><ENTER>
I can just x<TAB><ENTER>

im trying to use:
zstyle ':completion:*' local-files
but know im going about this completly wrong...

If anyone can point out which chapters of the zsh manual (or users
manual) I need to re-read, or if there is something 'basic' I am
missing, or if you can point out that either/both of these things simply arent
possible, I would greatly apprecate this.


Thank you very much for your time.


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: 2 things
  2004-09-16 13:43 2 things keef
@ 2004-09-19 20:31 ` Bart Schaefer
  0 siblings, 0 replies; 2+ messages in thread
From: Bart Schaefer @ 2004-09-19 20:31 UTC (permalink / raw)
  To: zsh-users

No one ever responded directly to this ...

On Thu, 16 Sep 2004, keef wrote:

> I would like to [use ignored-patterns to] ignore directories as well..
> I have tried '*(-/)' '(*/)' and many combinations inbetween but with no
> luck whatsoever...

As mentioned on the "Globbing question" thread, ignored-patterns are not 
filename generation patterns, they're just string comparison patterns.  
You have to exclude the directories another way; the usual way is to use 
the file-patterns style to split files into tagged groups, and then the 
tag-order style to select which groups get offered as completions.

> I have auto_param_slash and mark_dirs set... Is this ok ?

Shouldn't matter, the completion system turns those off again internally.

> in my .zshrc is have an alias -s set up to assocate all pdfs with
> xpdf ... so, ideally I would like to [complete PDF files in command
> position but] zsh looks through my path and completes binaries

Actually, and again as mentioned on the "Globbing question" thread, zsh
completes entries from the command hash table.  It also completes a lot
of other things, including suffix aliases.  I suspect that your PDF files
really are being completed, they're just buried somewhere in the mass of
commands, and what you want is for them to be preferred.

In this case the group-name and group-order styles are your friends.  
Unless you already have a generic group-name style, try:

    zstyle ':completion:*' group-name ''

Then (whatever your group-name style is) try:

    zstyle ':completion:*:*:-command-:*' group-order suffix-aliases

(Any groups not named in the style simply get tacked on at the end in 
their default ordering.)  For me, at least, the above is sufficient to
cause any files that match suffix aliases to float to the top of the
completion listing.


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2004-09-19 20:32 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-09-16 13:43 2 things keef
2004-09-19 20:31 ` Bart Schaefer

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).