Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: Announcement of Zsh Command Architect v1.0
- X-seq: zsh-users 21132
- From: Bart Schaefer <schaefer@xxxxxxxxxxxxxxxx>
- To: zsh-users@xxxxxxx
- Subject: Re: Announcement of Zsh Command Architect v1.0
- Date: Fri, 8 Jan 2016 20:24:58 -0800
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=brasslantern-com.20150623.gappssmtp.com; s=20150623; h=from:message-id:date:in-reply-to:comments:references:to:subject :mime-version:content-type; bh=wAFVatko54Tgt24Y8ZH2eZOVKtgKXw76Fs+wzZ+5zno=; b=YZzxEEVH7vk5eWDYBSnAFzgj0f6iYDiMxfstg14P0PbBwMJ6hj+zRhzThgju5K0vFJ 4Fi3v5ks3eWpSa/ep/KJsHSJE1wkL5YgqjBetxfsR5gny43aMogBJsfcIBa5olH3Jq+W Q50dK7qCidMYsoFCd7AJU6hFUaE6dYaJZwNVR6hw/4UMToKnYEWPcfGbrqkZEKt9PQNX FEB+tSlU9qmYcvpvJoHgLVhYavnHBZm9vMAMkuHBWbhdenNOeFKzOMQTTtOgqPtFbWlO DYvjQ3J4nIRe0y/r4/aYBRo56ApJTxTOsSz0uXSeMkHLdTPlHmq4vCfhW5ukCs8O1Nt7 V7uw==
- In-reply-to: <20160108093313.GA16910@linux.vnet.ibm.com>
- List-help: <mailto:zsh-users-help@zsh.org>
- List-id: Zsh Users List <zsh-users.zsh.org>
- List-post: <mailto:zsh-users@zsh.org>
- Mailing-list: contact zsh-users-help@xxxxxxx; run by ezmlm
- References: <CAKc7PVBZf9SQ+7En4nb6WCWv_WX226GtjWqDfTbwNcCKkvuBrg@mail.gmail.com> <20160108093313.GA16910@linux.vnet.ibm.com>
On Jan 8, 10:33am, Dominik Vogt wrote:
}
} mplayer -fs
} # noticed that I need a long word from the history, so comment
} # out the unfinished command line and store it in the history
} <ctrl-a>#<return>
This really shouldn't be necessary; ESC q (or Alt-q if properly bound)
to do push-line and then at the end ...
} # recall the unfinished command and insert the cut-buffer
} <cursor-up><ctrl-e> <ctrl-y>
} # remove comment and execute
} <ctrl-a><delete><return>
ESC g space ctrl-y return, should be sufficient.
} To me it appears that cases where a complicated part of a former
} history line needs to be copied and the same cannot easily be done
} with completion is quite rare.
The one thing completion can't do well is copy around multiple words
at once. It's quite tightly bound to the idea that it's acting on a
single word -- even inside quotes it usually wants to work on the
whitespace-separated internal bits rather than on the whole quoted
string.
Messages sorted by:
Reverse Date,
Date,
Thread,
Author