* plugin for standard shortcuts @ 2010-06-18 23:53 const451 2010-06-19 13:53 ` Suvayu Ali 2010-06-19 18:22 ` Stefan Vollmar 0 siblings, 2 replies; 7+ messages in thread From: const451 @ 2010-06-18 23:53 UTC (permalink / raw) To: Help-gnu-emacs Is there a plugin that uses standard key shortcuts for text manipulation such as Ctrl-C, Ctrl-V, Ctrl-Z, etc.? I think they are faster to use than the default shortcuts in emacs. I run Ubuntu Lucid (newbie). Thank you! -- View this message in context: http://old.nabble.com/plugin-for-standard-shortcuts-tp28931765p28931765.html Sent from the Emacs - Help mailing list archive at Nabble.com. ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: plugin for standard shortcuts 2010-06-18 23:53 plugin for standard shortcuts const451 @ 2010-06-19 13:53 ` Suvayu Ali 2010-06-19 18:22 ` Stefan Vollmar 1 sibling, 0 replies; 7+ messages in thread From: Suvayu Ali @ 2010-06-19 13:53 UTC (permalink / raw) To: help-gnu-emacs On Friday 18 June 2010 04:53 PM, const451 wrote: > > > Is there a plugin that uses standard key shortcuts for text manipulation > such as Ctrl-C, Ctrl-V, Ctrl-Z, etc.? I think they are faster to use than > the default shortcuts in emacs. > `M-x cua-mode' -- Suvayu Open source is the future. It sets us free. ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: plugin for standard shortcuts 2010-06-18 23:53 plugin for standard shortcuts const451 2010-06-19 13:53 ` Suvayu Ali @ 2010-06-19 18:22 ` Stefan Vollmar 1 sibling, 0 replies; 7+ messages in thread From: Stefan Vollmar @ 2010-06-19 18:22 UTC (permalink / raw) To: const451; +Cc: Help-gnu-emacs [-- Attachment #1: Type: text/plain, Size: 885 bytes --] On 19.06.2010, at 01:53, const451 wrote: > Is there a plugin that uses standard key shortcuts for text manipulation > such as Ctrl-C, Ctrl-V, Ctrl-Z, etc.? I think they are faster to use than > the default shortcuts in emacs. Switching on cua-mode is probably a very good solution to your problem. Here is a description: http://www.gnu.org/software/emacs/manual/html_node/emacs/CUA-Bindings.html#CUA-Bindings You can switch it on with either M-x cua-mode or the corresponding entry from the Options-Menu in more recent versions of Emacs. Warm regards, Stefan -- Dr. Stefan Vollmar, Dipl.-Phys. Head of IT group Max-Planck-Institut für neurologische Forschung Gleuelerstr. 50, 50931 Köln, Germany Tel.: +49-221-4726-213 FAX +49-221-4726-298 Tel.: +49-221-478-5713 Mobile: 0160-93874279 Email: vollmar@nf.mpg.de http://www.nf.mpg.de [-- Attachment #2: smime.p7s --] [-- Type: application/pkcs7-signature, Size: 4409 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
[parent not found: <mailman.2.1276955004.16791.help-gnu-emacs@gnu.org>]
* Re: plugin for standard shortcuts [not found] <mailman.2.1276955004.16791.help-gnu-emacs@gnu.org> @ 2010-06-19 21:06 ` Evans Winner 2010-06-20 2:19 ` Xah Lee 2010-06-19 23:00 ` Xah Lee 1 sibling, 1 reply; 7+ messages in thread From: Evans Winner @ 2010-06-19 21:06 UTC (permalink / raw) To: help-gnu-emacs ,------ const451 wrote ------ | Is there a plugin that uses standard key shortcuts for | text manipulation such as Ctrl-C, Ctrl-V, Ctrl-Z, etc.? | I think they are faster to use than the default | shortcuts in emacs. Do you think they are faster to use than the default bindings in Emacs, or do you mean that they are faster for you to use at the moment because they are what you are used to? In any case, M-x cua-mode RET -- will probably do more or less what you want. CUA stands for Common User Interface and was designed by IBM in the 1980s[1]. cua-mode changes some default Emacs bindings to match CUA standards. CUA does not scale very well, but is popular because it is implemented to some degree on Microsoft operating systems and many people first learned the idea of doing things with the keyboard in that context. People tend to stay with what they learn first. By the way, and just for your information, Emacs users typically do not call Emacs Lisp packages "plugins." More often they call them libraries or packages. If the code implements a major or minor mode, they typically call it a "mode." They also usually don't use the term "shortcut," possibly because that seems to imply some other manner of input that is privileged over use of the keyboard. The phrase "key binding" is more often used, because that is what you do: you bind a function to a key or key combination. Footnotes: [1] http://en.wikipedia.org/wiki/IBM_Common_User_Access ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: plugin for standard shortcuts 2010-06-19 21:06 ` Evans Winner @ 2010-06-20 2:19 ` Xah Lee 2010-06-20 3:41 ` Xah Lee 0 siblings, 1 reply; 7+ messages in thread From: Xah Lee @ 2010-06-20 2:19 UTC (permalink / raw) To: help-gnu-emacs On Jun 19, 2:06 pm, Evans Winner <tho...@unm.edu> wrote: > ,------ const451 wrote ------ > | Is there a plugin that uses standard key shortcuts for > | text manipulation such as Ctrl-C, Ctrl-V, Ctrl-Z, etc.? > | I think they are faster to use than the default > | shortcuts in emacs. > > Do you think they are faster to use than the default > bindings in Emacs, or do you mean that they are faster for > you to use at the moment because they are what you are used > to? > > In any case, > > M-x cua-mode RET > -- will probably do more or less what you want. CUA stands > for Common User Interface and was designed by IBM in the > 1980s[1]. cua-mode changes some default Emacs bindings to > match CUA standards. Emacs's cua-mode, is named after the IBM's Common User Accesss standard. However, according to Wikipedia http://en.wikipedia.org/wiki/IBM_Common_User_Access the IBM CUA standard does not say cut/copy/paste are X C V keys. Quote: The Cut command is ⇧ Shift+Del; Copy is Ctrl+Ins; Paste is ⇧ Shift +Ins; The Z X C V keys for undo/cut/copy/paste is popularized by Apple starting in mid 1980s. As a side note, emacs's naming of cua-mode is very bad. Because: • very few people today knows what CUA is. Among all people who makes a living by coding, i'd say less than 0.1% knew what CUA means. • emacs's cua-mode's behavior is not IBM's CUA standard at all. All it does is basically just the X C V keys, and these may not even be part of IBM's CUA. Emacs's developers named it cua-mode probably because of a ergo/cult problem. They needed a name for this widely needed mode, but naming it anyhing that might relate to Microsoft Windows or Apple is a political problem to FSF/GNU. (note: Richard Stallman HATES Microsoft and also HATES Apple. GNU's stance against Microsoft is well known, from GNU/ Richard's writings especially in 1980s and 1990s. Throughout 1990s, GNU boycotted Apple partly becuase Apple sued Microsoft for copying Apple's GUI interface. This boycot was officially withdrawn in i think early 2000s.) The cua-mode is probably better named XCV-mode or copy-paste-key-mode, and the menu name should be “XCV keys for Cut/Copy/Paste”. The mode name change is probably too late, but the menu name change can still be done. The name “XCV keys for Cut/Copy/Paste” does not relate any commercial organization, and is easy for people to understand what it means. also, the cua-mode has a major problem in that it supports XCV but not Z for undo, which is also widely asked for, and standard across Microsoft/Mac/Linuxes today. > CUA does not scale very well, but is > popular because it is implemented to some degree on > Microsoft operating systems and many people first learned > the idea of doing things with the keyboard in that context. > People tend to stay with what they learn first. CUA does not scale very well? Please provide detail on this when saying this kinda things. > By the way, and just for your information, Emacs users > typically do not call Emacs Lisp packages "plugins." More > often they call them libraries or packages. Calling it plugin is not emacs convention but i think is very good terminology. It is intuitive, and widely used. For example, browsers used the term plugins since 15 years ago. Mathematica, a programing language calls its extra packages/libraries plugins or add-ons. Firefox also clarified a bit in their terminology of plugin vs add-on starting about 1 or 2 years ago. e.g. plugin are those like java or flash engine, while addon often are little user oriented utilities. plug-in and add-on are intuitive terms that anyone can easily understand what they mean just by the word itself. While, package, library, module, is more oriented to software engineering in a technical context. > If the code > implements a major or minor mode, they typically call it a > "mode." They also usually don't use the term "shortcut," > possibly because that seems to imply some other manner of > input that is privileged over use of the keyboard. The > phrase "key binding" is more often used, because that is > what you do: you bind a function to a key or key > combination. Similar to the library/package/module vs plug-in/add-on argument, same applies here. The term “Keyboard shortcut” or “hotkey” is suitable in the context of users using a software application, while keybinding is suitable for programing and software engineering. “keybinding” is in fact logically incorrect in the user context of pressing a key. When you press a key to invoke a command, you are not binding a key. You are using a KEY that has a keybinding. These distinctions are important. I'm writing this because it is common in emacs community to sting new users about these kinda things... and i think it's very harmful to emacs's health. It just turns away users and keep brewing the emacs cult. Xah ∑ http://xahlee.org/ ☄ ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: plugin for standard shortcuts 2010-06-20 2:19 ` Xah Lee @ 2010-06-20 3:41 ` Xah Lee 0 siblings, 0 replies; 7+ messages in thread From: Xah Lee @ 2010-06-20 3:41 UTC (permalink / raw) To: help-gnu-emacs On Jun 19, 7:19 pm, Xah Lee <xah...@gmail.com> wrote: > I'm writing this because it is common in emacs community to sting new > users about these kinda things... and i think it's very harmful to > emacs's health. slightly expanded and cleaned up, at: • Emacs cua-mode Problems http://xahlee.org/emacs/modernization_cua-mode.html Xah ∑ http://xahlee.org/ ☄ ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: plugin for standard shortcuts [not found] <mailman.2.1276955004.16791.help-gnu-emacs@gnu.org> 2010-06-19 21:06 ` Evans Winner @ 2010-06-19 23:00 ` Xah Lee 1 sibling, 0 replies; 7+ messages in thread From: Xah Lee @ 2010-06-19 23:00 UTC (permalink / raw) To: help-gnu-emacs On Jun 18, 4:53 pm, const451 <const...@gmail.com> wrote: > Is there a plugin that uses standard key shortcuts for text manipulation > such as Ctrl-C, Ctrl-V, Ctrl-Z, etc.? I think they are faster to use than > the default shortcuts in emacs. > > I run Ubuntu Lucid (newbie). > > Thank you! you can turn on cua-mode by Alt+x cua-mode. or you can install the ErgoEmacs keybinding, then it'll also support standard Open, Close, Save, Save As, New... about 7 of them. http://xahlee.org/emacs/ergonomic_emacs_keybinding.html Xah ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2010-06-20 3:41 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2010-06-18 23:53 plugin for standard shortcuts const451 2010-06-19 13:53 ` Suvayu Ali 2010-06-19 18:22 ` Stefan Vollmar [not found] <mailman.2.1276955004.16791.help-gnu-emacs@gnu.org> 2010-06-19 21:06 ` Evans Winner 2010-06-20 2:19 ` Xah Lee 2010-06-20 3:41 ` Xah Lee 2010-06-19 23:00 ` Xah Lee
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.