From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21274 invoked by alias); 11 Aug 2015 18:50:19 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 36108 Received: (qmail 15040 invoked from network); 11 Aug 2015 18:50:16 -0000 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_LOW, RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL autolearn=ham autolearn_force=no version=3.4.0 X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:message-id:date:to:subject:mime-version :content-type; bh=FuBlijOA+bLmFoezOhMByZPaaKoAGtLJYheke9mgxJw=; b=QcPY4F+V/ofqBPnA0pm1tKll1OWzo1NxS1ZJsKLu3ruYw645rnMMx8To/PkpYXKPBu jMO6kytkg0+1C3NVAwVozH0R7MR/xwWe+uI1giCmlTwcKend36+zzVmWPAwHK8kF1T0n GQVqxZAWdrMV4LNJHz7d9MJmR3vmdxgiQtCfz0MHV0rToIfxEvuFJkxGG1KnFlaLtSJ0 y1yzme438uCLjH6JSLiwmnJ3Dr67PMzLKqu82gSaDuQe5Y+ZOYSXRU1a4yopYJXGfcA1 NOd8Xel17levxDDepLQqVxRJYtyDL+uuIcI8h8C6KTl4nvOEoUACkoC+afHvOdE4L6qJ KXPg== X-Gm-Message-State: ALoCoQnbOGu+W6yFXjsR7PzKF/FWOhkzzO2DsVCJvYKhN+3Rw+rS2I2289sLezIextDzRnOl2r4V X-Received: by 10.182.142.74 with SMTP id ru10mr26757829obb.75.1439319013759; Tue, 11 Aug 2015 11:50:13 -0700 (PDT) From: Bart Schaefer Message-Id: <150811115003.ZM30346@torch.brasslantern.com> Date: Tue, 11 Aug 2015 11:50:03 -0700 X-Mailer: OpenZMail Classic (0.9.2 24April2005) To: zsh-workers@zsh.org Subject: PATCH for NEWS update MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Proposed NEWS list. If anyone wants to elaborate on these or thinks I have missed something important, please jump in. diff --git a/NEWS b/NEWS index d515a60..e6bd732 100644 --- a/NEWS +++ b/NEWS @@ -18,6 +18,39 @@ creates a local "scalar" containing the text "one word" and an array "array" containing the words "several" "words". +- The print builtin has new options -x and -X to expand tabs. + +- Several new command completions and numerous updates to others. + +- Options to "fc" to segregate internal and shared history. + +- All emulations including "sh" use multibyte by default; several + repairs to multibyte handling. + +- ZLE supports "bracketed paste" mode to avoid interpreting pasted + newlines as accept-line. Pastes can be highlighted for visibility + and to make it more obvious whether accept-line has occurred. + +- Improved (though still not perfect) POSIX compatibility for getopts + builtin when POSIX_BUILTINS is set. + +- New setopt APPEND_CREATE for POSIX-compatible NO_CLOBBER behavior. + +- Completion of date values now displays in a calendar format when + the complist module is available. Controllable by zstyle. + +- New parameter UNDO_LIMIT_NO for more control over ZLE undo repeat. + +- Several repairs/improvements to the contributed narrow-to-region + ZLE function. + +- Many changes to child-process and signal handling to eliminate race + conditions and avoid deadlocks on descriptor and memory management. + +- New builtin sysopen in zsh/system module for detailed control of + file descriptor modes. + + Changes from 5.0.0 to 5.0.8 --------------------------- -- Barton E. Schaefer