zsh-users
 help / color / mirror / code / Atom feed
* Idea Float O/T
@ 2005-05-24 13:05 zzapper
  2005-05-24 14:14 ` Oliver Kiddle
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: zzapper @ 2005-05-24 13:05 UTC (permalink / raw)
  To: zsh-users

Hi,
In some of my directories, I have a "master" tex document which I clone when I want to create a new
document. I also have this problem with some of my zsh scripts

This file which has different names tends to get "lost" in the directory.

So I need for it stand-out in some way.

Solutions
1) some kind of auto-touch mechanism to make it always newest (NO dont' like that)

2) Have a special prefix eg master_* (OK) or suffix *.mst (OK but I'd lose Syntax highlighting etc)

3) Give the file some kind of special property? But What????

Lateral Ideas sought

-- 
zzapper
vim -c ":%s%s*%Cyrnfr)fcbafbe[Oenz(Zbbyranne%|:%s)[[()])-)Ig|norm Vg?"
http://www.rayninfo.co.uk/tips/ vim, zsh & success tips


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

* Re: Idea Float O/T
  2005-05-24 13:05 Idea Float O/T zzapper
@ 2005-05-24 14:14 ` Oliver Kiddle
  2005-05-24 15:29   ` zzapper
  2005-05-24 15:00 ` Tom Martin
  2005-05-24 15:25 ` Bart Schaefer
  2 siblings, 1 reply; 6+ messages in thread
From: Oliver Kiddle @ 2005-05-24 14:14 UTC (permalink / raw)
  To: zsh-users

zzapper wrote:

> In some of my directories, I have a "master" tex document which I clone when I want to create a new
> document. I also have this problem with some of my zsh scripts
> 
> This file which has different names tends to get "lost" in the directory.
> 
> So I need for it stand-out in some way.

Would creating a symbolic link to it work?

Oliver


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

* Re: Idea Float O/T
  2005-05-24 13:05 Idea Float O/T zzapper
  2005-05-24 14:14 ` Oliver Kiddle
@ 2005-05-24 15:00 ` Tom Martin
  2005-05-24 15:25 ` Bart Schaefer
  2 siblings, 0 replies; 6+ messages in thread
From: Tom Martin @ 2005-05-24 15:00 UTC (permalink / raw)
  To: zsh-users

On Tue, May 24, 2005 at 02:05:25PM +0100, zzapper <david@tvis.co.uk> wrote:
> 2) Have a special prefix eg master_* (OK) or suffix *.mst (OK but I'd lose Syntax highlighting etc)

You could use a vim modeline so that the syntax highlighting is not
lost with the suffix.

Personally, I would add a pattern highlight to $LS_COLORS so that
files beginning with master_ or ending in .mst are highlighted.

-- 
Tom Martin, http://dev.gentoo.org/~slarti


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

* Re: Idea Float O/T
  2005-05-24 13:05 Idea Float O/T zzapper
  2005-05-24 14:14 ` Oliver Kiddle
  2005-05-24 15:00 ` Tom Martin
@ 2005-05-24 15:25 ` Bart Schaefer
  2005-05-24 15:41   ` zzapper
  2 siblings, 1 reply; 6+ messages in thread
From: Bart Schaefer @ 2005-05-24 15:25 UTC (permalink / raw)
  To: zzapper, zsh-users

On May 24,  2:05pm, zzapper wrote:
} Subject: Idea Float O/T
}
} This file which has different names tends to get "lost" in the directory.
} 
} So I need for it stand-out in some way.

My choice would be to put it in a subdirectory.

If that won't work, give it a name that begins with "+".  That should
collate ahead of any file name beginning with letters or digits.


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

* Re: Idea Float O/T
  2005-05-24 14:14 ` Oliver Kiddle
@ 2005-05-24 15:29   ` zzapper
  0 siblings, 0 replies; 6+ messages in thread
From: zzapper @ 2005-05-24 15:29 UTC (permalink / raw)
  To: zsh-users

On Tue, 24 May 2005 16:14:45 +0200,  wrote:

>zzapper wrote:
>
>> In some of my directories, I have a "master" tex document which I clone when I want to create a new
>> document. I also have this problem with some of my zsh scripts
>> 
>> This file which has different names tends to get "lost" in the directory.
>> 
>> So I need for it stand-out in some way.
>
>Would creating a symbolic link to it work?
>
That's the kind of thing, so that I could write a tool to "find" it

-- 
zzapper
vim -c ":%s%s*%Cyrnfr)fcbafbe[Oenz(Zbbyranne%|:%s)[[()])-)Ig|norm Vg?"
http://www.rayninfo.co.uk/tips/ vim, zsh & success tips


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

* Re: Idea Float O/T
  2005-05-24 15:25 ` Bart Schaefer
@ 2005-05-24 15:41   ` zzapper
  0 siblings, 0 replies; 6+ messages in thread
From: zzapper @ 2005-05-24 15:41 UTC (permalink / raw)
  To: zsh-users

On Tue, 24 May 2005 15:25:44 +0000,  wrote:

>On May 24,  2:05pm, zzapper wrote:
>} Subject: Idea Float O/T
>}
>} This file which has different names tends to get "lost" in the directory.
>} 
>} So I need for it stand-out in some way.


>give it a name that begins with "+".  That should
>collate ahead of any file name beginning with letters or digits.

Kool!

I also like your "Flummoxed by specious obfuscatory palaver?"

-- 
zzapper
vim -c ":%s%s*%Cyrnfr)fcbafbe[Oenz(Zbbyranne%|:%s)[[()])-)Ig|norm Vg?"
http://www.rayninfo.co.uk/tips/ vim, zsh & success tips


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

end of thread, other threads:[~2005-05-24 15:44 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-05-24 13:05 Idea Float O/T zzapper
2005-05-24 14:14 ` Oliver Kiddle
2005-05-24 15:29   ` zzapper
2005-05-24 15:00 ` Tom Martin
2005-05-24 15:25 ` Bart Schaefer
2005-05-24 15:41   ` zzapper

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).