From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: "Jason M. LaPenta" Newsgroups: gmane.emacs.help Subject: cut / insert and kill yank Date: Tue, 15 Apr 2003 09:06:34 -0400 Sender: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: <3E9C03DA.7080302@ll.mit.edu> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1050408419 25258 80.91.224.249 (15 Apr 2003 12:06:59 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Tue, 15 Apr 2003 12:06:59 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Tue Apr 15 14:06:56 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 195PDE-0006Z6-00 for ; Tue, 15 Apr 2003 14:06:56 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 195PBe-0005TF-03 for gnu-help-gnu-emacs@m.gmane.org; Tue, 15 Apr 2003 08:05:18 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!bloom-beacon.mit.edu!llnews.ll.mit.edu!53ab2750!not-for-mail User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.0.1) Gecko/20020830 X-Accept-Language: en-us, en Original-Newsgroups: gnu.emacs.help Original-Lines: 17 Original-NNTP-Posting-Host: 155.34.70.41 Original-X-Complaints-To: news@ll.mit.edu Original-X-Trace: llnews.ll.mit.edu 1050408222 155.34.70.41 (Tue, 15 Apr 2003 08:03:42 EDT) Original-NNTP-Posting-Date: Tue, 15 Apr 2003 08:03:42 EDT Original-Xref: shelby.stanford.edu gnu.emacs.help:111995 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:8495 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:8495 Hi, I would like to start using emacs over xemacs, but first I need to have cut/paste AND kill/yank. I'm thinking i can do this by binding the 'insert-register' and 'copy-to-register' to the S-insert C-insert keys, but this isn't working. It would also be nice to have the cursor goto the end of the inserted text as well (global-unset-key [C-insert]) (global-unset-key [S-insert]) (global-set-key [C-insert] 'M-x copy-to-register 1) (global-set-key [S-insert] 'M-x insert-register 1) also how do you unmark, ie stop marking. withour starting a new mark? Thanks