home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 March / PCWELT_3_2006.ISO / base / 05_common.mo / usr / share / elvis-2.2_0 / scripts / inregion.ex < prev    next >
Encoding:
Text File  |  2004-02-22  |  271 b   |  13 lines

  1. "defines a :inregion alias
  2. alias inregion {
  3.   " execute a command for each line that happens to be in a given region
  4.   if "!1" == ""
  5.   then error usage: inregion facename excmdline...
  6.   normal mz
  7.   !%g/^/ {
  8.     if current("region") == "!1"
  9.     then !2*
  10.   }
  11.   normal `z
  12. }
  13.