all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Funny...
@ 2006-11-26  2:09 Perry Smith
  2006-11-26  9:53 ` Funny Peter Dyballa
  0 siblings, 1 reply; 9+ messages in thread
From: Perry Smith @ 2006-11-26  2:09 UTC (permalink / raw)



[-- Attachment #1.1: Type: text/plain, Size: 475 bytes --]

Someone was asking about OS's and emacs...

Has anyone noticed that you get about 75% of the emacs key bindings  
in all of the text widgets on the Mac?  I think every control-X  
combination works.  The meta and shift cording keys do not work.

A lot of non-Apple Mac applications do not have this feature.

Perry Smith ( pedz@easesoftware.com )
Ease Software, Inc. ( http://www.easesoftware.com )

Low cost SATA Disk Systems for IBMs p5, pSeries, and RS/6000 AIX systems



[-- Attachment #1.2: Type: text/html, Size: 4203 bytes --]

[-- Attachment #2: Type: text/plain, Size: 152 bytes --]

_______________________________________________
help-gnu-emacs mailing list
help-gnu-emacs@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gnu-emacs

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Funny...
  2006-11-26  2:09 Funny Perry Smith
@ 2006-11-26  9:53 ` Peter Dyballa
  2006-11-26 13:31   ` Funny Perry Smith
  0 siblings, 1 reply; 9+ messages in thread
From: Peter Dyballa @ 2006-11-26  9:53 UTC (permalink / raw)
  Cc: GNU Emacs List


Am 26.11.2006 um 03:09 schrieb Perry Smith:

> The meta and shift cording keys do not work.

But Esc-<key> works. I use a few to capitalise, down- or up-case, or  
delete forth or back ...

--
Greetings

   Pete

One doesn't expect governments to obey the law because of some higher  
moral development.  One expects them to obey the law because they  
know that if they don't, those who aren't shot will be hanged.
                                                  --Michael Shirley

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Funny...
  2006-11-26  9:53 ` Funny Peter Dyballa
@ 2006-11-26 13:31   ` Perry Smith
  2006-11-26 14:11     ` Funny Peter Dyballa
  2006-11-26 14:32     ` Funny Peter Dyballa
  0 siblings, 2 replies; 9+ messages in thread
From: Perry Smith @ 2006-11-26 13:31 UTC (permalink / raw)
  Cc: GNU Emacs List


[-- Attachment #1.1: Type: text/plain, Size: 500 bytes --]

On Nov 26, 2006, at 3:53 AM, Peter Dyballa wrote:

>
> Am 26.11.2006 um 03:09 schrieb Perry Smith:
>
>> The meta and shift cording keys do not work.
>
> But Esc-<key> works. I use a few to capitalise, down- or up-case,  
> or delete forth or back ...

That does not work for me from Mail or TextEdit.  Hmmm... I feel left  
out now.

Perry Smith ( pedz@easesoftware.com )
Ease Software, Inc. ( http://www.easesoftware.com )

Low cost SATA Disk Systems for IBMs p5, pSeries, and RS/6000 AIX systems



[-- Attachment #1.2: Type: text/html, Size: 4903 bytes --]

[-- Attachment #2: Type: text/plain, Size: 152 bytes --]

_______________________________________________
help-gnu-emacs mailing list
help-gnu-emacs@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gnu-emacs

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Funny...
  2006-11-26 13:31   ` Funny Perry Smith
@ 2006-11-26 14:11     ` Peter Dyballa
  2006-11-26 14:32     ` Funny Peter Dyballa
  1 sibling, 0 replies; 9+ messages in thread
From: Peter Dyballa @ 2006-11-26 14:11 UTC (permalink / raw)
  Cc: GNU Emacs List


Am 26.11.2006 um 14:31 schrieb Perry Smith:

> On Nov 26, 2006, at 3:53 AM, Peter Dyballa wrote:
>
>>
>> Am 26.11.2006 um 03:09 schrieb Perry Smith:
>>
>>> The meta and shift cording keys do not work.
>>
>> But Esc-<key> works. I use a few to capitalise, down- or up-case,  
>> or delete forth or back ...
>
> That does not work for me from Mail or TextEdit.  Hmmm... I feel  
> left out now.
>

You'd need to set up ~/Library/KeyBindings/DefaultKeyBinding.dict:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http:// 
www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
         <key>/key>
         <dict>
                 <key</key>
                 <string>deleteWordBackward:</string>
                 <key>&lt;</key>
                 <string>moveToBeginningOfDocument:</string>
                 <key>&gt;</key>
                 <string>moveToEndOfDocument:</string>
                 <key>^h</key>
                 <string>deleteWordBackward:</string>
                 <key>b</key>
                 <string>moveWordBackward:</string>
                 <key>c</key>
                 <string>capitalizeWord:</string>
                 <key>d</key>
                 <string>deleteWordForward:</string>
                 <key>f</key>
                 <string>moveWordForward:</string>
                 <key>l</key>
                 <string>lowercaseWord:</string>
                 <key>t</key>
                 <string>transposeWords:</string>
                 <key>u</key>
                 <string>uppercaseWord:</string>
                 <key></key>
                 <string>deleteWordBackward:</string>
         </dict>
         <key>^x</key>
         <dict>
                 <key>^g</key>
                 <string>abort:</string>
                 <key>x</key>
                 <string>swapWithMark:</string>
         </dict>
</dict>
</plist>

Inside the DeveloperTools a nice utility is hid: Property List  
Editor.app; the keywords used above are described somewhere under  
Cocoa key bindings. Spotlight might find the document(s) with one of  
them.

--
Greetings

   Pete

"Eternity is a terrible thought. I mean, where's it going to end?"
                                             - Tom Stoppard

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Funny...
  2006-11-26 13:31   ` Funny Perry Smith
  2006-11-26 14:11     ` Funny Peter Dyballa
@ 2006-11-26 14:32     ` Peter Dyballa
  1 sibling, 0 replies; 9+ messages in thread
From: Peter Dyballa @ 2006-11-26 14:32 UTC (permalink / raw)
  Cc: GNU Emacs List


Am 26.11.2006 um 14:31 schrieb Perry Smith:

>
>> The meta and shift cording keys do not work.
>
> But Esc-<key> works. I use a few to capitalise, down- or up-case,  
> or delete forth or back ...
>
> That does not work for me from Mail or TextEdit.  Hmmm... I feel  
> left out now.

This might help: http://www.macosxhints.com/article.php? 
story=20060317045211408

--
Greetings

   Pete

UNIX is user friendly, it's just picky about who its friends are.

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Funny...
       [not found] <mailman.1129.1164506965.2155.help-gnu-emacs@gnu.org>
@ 2006-11-27  1:01 ` springfield
  2006-11-27  5:47   ` Funny David Hansen
  2006-11-27 12:16 ` Funny Jochem Huhmann
  1 sibling, 1 reply; 9+ messages in thread
From: springfield @ 2006-11-27  1:01 UTC (permalink / raw)


Perry Smith wrote:
 > Someone was asking about OS's and emacs...
 >
 > Has anyone noticed that you get about 75% of the emacs key bindings in
 > all of the text widgets on the Mac? I think every control-X combination
 > works. The meta and shift cording keys do not work.
 >
 > A lot of non-Apple Mac applications do not have this feature.

GTK has this ability too!

Cheers,
Spring

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Funny...
  2006-11-27  1:01 ` Funny springfield
@ 2006-11-27  5:47   ` David Hansen
  0 siblings, 0 replies; 9+ messages in thread
From: David Hansen @ 2006-11-27  5:47 UTC (permalink / raw)


On Mon, 27 Nov 2006 01:01:18 +0000 springfield wrote:

> Perry Smith wrote:
>> Someone was asking about OS's and emacs...
>>
>> Has anyone noticed that you get about 75% of the emacs key bindings in
>> all of the text widgets on the Mac? I think every control-X combination
>> works. The meta and shift cording keys do not work.
>>
>> A lot of non-Apple Mac applications do not have this feature.
>
> GTK has this ability too!

How do i change this annoying behavior that some menu pops up
when i hit M-f, M-b in some input widget?

David

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Funny...
       [not found] <mailman.1129.1164506965.2155.help-gnu-emacs@gnu.org>
  2006-11-27  1:01 ` Funny springfield
@ 2006-11-27 12:16 ` Jochem Huhmann
  2006-11-30 13:16   ` Funny Christopher Kuettner
  1 sibling, 1 reply; 9+ messages in thread
From: Jochem Huhmann @ 2006-11-27 12:16 UTC (permalink / raw)


Perry Smith <pedz@easesoftware.com> writes:

> Someone was asking about OS's and emacs...
>
> Has anyone noticed that you get about 75% of the emacs key bindings  in
> all of the text widgets on the Mac?  I think every control-X
> combination works.  The meta and shift cording keys do not work.

You can edit these keybindings (including Meta and Shift, including
multi-keysstroke bindings) by editing
~/Library/KeyBindings/DefaultKeyBinding.dict.

Or use http://www.cocoabits.com/KeyBindingsEditor/

> A lot of non-Apple Mac applications do not have this feature.

All applications using the Cocoa-Libraries have this feature, Apple
and non-Apple.


        Jochem

-- 
 "A designer knows he has arrived at perfection not when there is no 
 longer anything to add, but when there is no longer anything to take away."
 - Antoine de Saint-Exupery 

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: Funny...
  2006-11-27 12:16 ` Funny Jochem Huhmann
@ 2006-11-30 13:16   ` Christopher Kuettner
  0 siblings, 0 replies; 9+ messages in thread
From: Christopher Kuettner @ 2006-11-30 13:16 UTC (permalink / raw)


Jochem Huhmann wrote:
>> Someone was asking about OS's and emacs...

Jochem, Peter, thank you for figuring this out for me.

  'till later,
   <> Christopher

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2006-11-30 13:16 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <mailman.1129.1164506965.2155.help-gnu-emacs@gnu.org>
2006-11-27  1:01 ` Funny springfield
2006-11-27  5:47   ` Funny David Hansen
2006-11-27 12:16 ` Funny Jochem Huhmann
2006-11-30 13:16   ` Funny Christopher Kuettner
2006-11-26  2:09 Funny Perry Smith
2006-11-26  9:53 ` Funny Peter Dyballa
2006-11-26 13:31   ` Funny Perry Smith
2006-11-26 14:11     ` Funny Peter Dyballa
2006-11-26 14:32     ` Funny Peter Dyballa

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.