home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / comp / unix / shell / 3238 < prev    next >
Encoding:
Text File  |  1992-07-31  |  1.1 KB  |  38 lines

  1. Newsgroups: comp.unix.shell
  2. Path: sparky!uunet!mcsun!sunic!ugle.unit.no!news
  3. From: Harald.Eikrem@delab.sintef.no
  4. Subject: Re: tcsh in the future - what should it be like?
  5. In-Reply-To: Harald.Eikrem@delab.sintef.no's message of 31 Jul 92 01:09:03
  6. Message-ID: <1992Jul31.152929*Harald.Eikrem@delab.sintef.no>
  7. Sender: news@ugle.unit.no (NetNews Administrator)
  8. Organization: SINTEF DELAB, Trondheim, Norway.
  9. References: <yeates.711122638@beryl17> <1992Jul16.153506.24366@bmerh85.bnr.ca>
  10.     <1992Jul27.031238.10376@chpc.utexas.edu>
  11.     <1992Jul27.215202*Harald.Eikrem@delab.sintef.no>
  12.     <smr.712419130@hitkw14>
  13.     <1992Jul31.010903*Harald.Eikrem@delab.sintef.no>
  14. Date: 31 Jul 92 15:29:29
  15. Lines: 21
  16.  
  17. tcsh hints --
  18.  
  19. You may bind e.g. F-keys to perform your 500-times-a-day commands by
  20.  
  21.    bindkey -c key-seq command
  22.  
  23. and it wont even hit the command history, if that's what you so badly want
  24. to avoid.  You may even
  25.  
  26.    bindkey -c key-seq \!$EDITOR
  27.  
  28. if you know what I mean.
  29.  
  30. And a history-search-backward + newline function might be set up as
  31.  
  32.    bindkey -s key-seq '\ep\n'
  33.  
  34. See?  You enter the start of the command you want reexecuted and hit
  35. the chosen key.....  Pling.
  36.  
  37.   ~~h
  38.