From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4912 invoked by alias); 4 Sep 2012 17:50:56 -0000 Mailing-List: contact zsh-users-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Users List List-Post: List-Help: X-Seq: 17223 Received: (qmail 14844 invoked from network); 4 Sep 2012 17:50:55 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-1.6 required=5.0 tests=BAYES_00,DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED,FREEMAIL_FROM,NML_ADSP_CUSTOM_MED,RCVD_IN_DNSWL_LOW, T_DKIM_INVALID,T_TO_NO_BRKTS_FREEMAIL autolearn=no version=3.3.2 Received-SPF: pass (ns1.primenet.com.au: SPF record at _spf.google.com designates 209.85.161.171 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:subject:message-id:mail-followup-to:mime-version :content-type:content-disposition:user-agent; bh=IjkguFaJn0eO2n8STMk8lzZvDoRKtRLpuyQRYYFpL34=; b=LxqBVX+ffTkxlDP/QAc2bH5ru8pR9WiauVa5TlYUHrkE8tX/eZvymQ5uHe5rlBiqav pnEOlJO8z+dpxOU5DXad1tRj8FMAJe0e1eAEMZk7gjq1PJAiUgu48roKvJOen5aFQ0Bv L9Z3+EVOZ6bT362DKAopzvRSlSbrw7Z+BgDZ1ueuH84BaGDJfjcqh0CQ76hC/hTTK7A1 9F1P1vVB/spssv1BT8pRdRJCbLap5MCnOiZg4i3YU5ZBymhQ1A4gSTzblFNR9r8d8jwt UbF4nB6H2REoe1FBccxzSj13d5HRZgRiZWEzSY3zSyoBSDjD1AKkTORbiA4j6F+E5gIr M7kg== Date: Tue, 4 Sep 2012 14:56:37 -0300 From: Silas Silva To: zsh-users@zsh.org Subject: Add "page-ranges" to the _lp completion Message-ID: <20120904175636.GA11992@auron.ufabc.int.br> Mail-Followup-To: zsh-users@zsh.org MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="+QahgC5+KEYLbs62" Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) --+QahgC5+KEYLbs62 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi there! A sugestion to add to the _lp file (regarding page selection when printing stuff): the "page-ranges" option. See patch. Thank you. -- Silas Silva --+QahgC5+KEYLbs62 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="_lp.diff" diff --git a/Completion/Unix/Command/_lp b/Completion/Unix/Command/_lp index e0654e7..8da84a1 100644 --- a/Completion/Unix/Command/_lp +++ b/Completion/Unix/Command/_lp @@ -28,7 +28,7 @@ _lp_job_options() # Generic options (from lp manual page) lopts_with_args=( media orientation-requested sides number-up scaling cpi lpi - page-{bottom,left,right,top} ) + page-{bottom,left,right,top} page-ranges ) lopts_no_args=(fitplot landscape) --+QahgC5+KEYLbs62--