From mboxrd@z Thu Jan 1 00:00:00 1970 From: lngndvs@gmail.com Subject: Re: Pop up reference card Date: Fri, 01 Aug 2008 12:45:23 +1000 Message-ID: <87bq0dh2rg.fsf@luminosity.i-did-not-set--mail-host-address--so-tickle-me> Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KOkdx-0004Dq-JF for emacs-orgmode@gnu.org; Thu, 31 Jul 2008 22:45:25 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KOkdv-0004De-Ki for emacs-orgmode@gnu.org; Thu, 31 Jul 2008 22:45:25 -0400 Received: from [199.232.76.173] (port=42918 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KOkdv-0004Db-Fq for emacs-orgmode@gnu.org; Thu, 31 Jul 2008 22:45:23 -0400 Received: from wf-out-1314.google.com ([209.85.200.170]:9605) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KOkdv-00051i-0B for emacs-orgmode@gnu.org; Thu, 31 Jul 2008 22:45:23 -0400 Received: by wf-out-1314.google.com with SMTP id 28so764678wfc.24 for ; Thu, 31 Jul 2008 19:45:21 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Sven Bretfeld , Sebastian Rose , emacs-orgmode Mailinglist The following was my help for the /Cx-6 keymap. I cleaned it up a little, but it seems to also insert an expanded minibuffer on my system, with a second copy of this momentarily displayed screen. (The functions were little utilities for a lexicon project). Hope it makes it across. ;;;;;;;;;;;;; HELP FOR \\C-x6 keys ;;;;;;;;;;;;;; ;; (defvar my-keys-CX6 (concat " | \\C-x4.: Goto last focus line F8: Scientific Names \n" " | F9 : See-section \n" " | \\C-x61: tc-merge F10: fast-1995 \n" " | \\C-x62: tc-twocolumns F2: Swap-windows \n" " | \\C-x63: () \\C-xF2 Flipflop windows \n" " | \\C-x64: () \\C-x4F2 transpose-windows \n" " | \\C-x65: move-curly-eol-cmnt \\C-x45 lex-move-curly (OLD)\n" " | \\C-x66: () \n" " | \\C-x67: () \n" " | \\C-x68: \n" " | \\C-x69: lex-remove-curly-brackets-region \n" " | \\C-x60: shell-command-on-region \n" " | \\C-x6:: prepend-num-catcode \n" " | \\C-x6f10: sort-lines \n" " | \\C-x6f9: sortex-retro \\C-x6f8: unsortex-until \n" " | \\C-x4- : focus \\C-x+: unfocus \\C--: focus-down \\M--: focus-up \n" " | \\C-x60 shell-cmnd-region \n") "*String displayed above current line by \\my-function-help].") ;; ;; (defun my-functions-help-CX6 () "Inserts a reminder of my own functions momentarily above current line, till next keystroke. The ruler is defined by the value of column-ruler. The key typed is executed unless it is SPC." (interactive) (save-excursion (momentary-string-display my-keys-CX6 (save-excursion (point-min) (point)) nil "Type SPC or any command to erase help."))) ;; ;; (global-set-key (quote [24 54 f1]) (quote my-functions-help-CX6)) ;;; End CX6-HELP Alan