History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: IDEA-12078
Type: Usability Problem Usability Problem
Status: Waiting for Reply Waiting for Reply
Assignee: Kirill Kalishev
Reporter: Dave Yost
Votes: 3
Watchers: 6
Operations

If you were logged in you would be able to see more operations.
IDEA: Feedback

^X, ^C, ^V for cut, copy, paste on Mac

Created: 21 Mar 07 23:35   Updated: 06 Aug 08 17:28
Component/s: User Interface

Environment: Mac
Issue Links:
Duplicate
 
This issue is duplicated by:
IDEA-18996 OS X keymap not consistent across all... Resolved

Build: 6,763


 Description  « Hide
On Mac, many dialogs work only with ^X, ^C, ^V instead of cmd-X, cmd-C, cmd-V.

Example: Debugger Cofigurations window.



 All   Comments   Work Log   Change History      Sort Order:
Kirill Kalishev - 05 Apr 07 17:54
which keymap do you use?

Dave Yost - 05 Apr 07 19:34
Mac OS X

When I filter for keystroke ^C in the Keymap dialog it comes up with nothing.


Dave Yost - 24 May 07 22:38
Apple recommends this code, which is portable and which solves the problem i am reporting.
JMenuItem menuItem = new JMenuItem("Copy");
int mask = Toolkit.getDefaultToolkit().getMenuShortcutKeyMask();
KeyStroke keyStroke = KeyStroke.getKeyStroke(KeyEvent.VK_C, mask);
menuItem.setAccelerator(keyStroke);

Roman Chernyatchik - 21 Oct 07 12:16
I have the same problem on Mac OS C 10.4.10 + Java 1.5.0_07 + Idea #7361 + Mac OS keymap.

E.g if I copy text via cmd-C, then I have to paste it in the textbox of "Find" dialog only by pressing ^V (cmd-v doesn't work). But in IDEA's text editor window all is ok.


Roman Chernyatchik - 22 Oct 07 17:00
I've changed Look and Feel to Mac OS(the previous was Allow) one and now all is ok.

Igor Dubosarskiy - 23 Jan 08 01:33
This does work with OS X theme only if using Command-C Command-V, but if you want to use the Alloy theme on Mac you get mixed key binding across dialogs.

Howard M. Lewis Ship - 02 Feb 08 22:38
I use the Alloy theme also, for performance reasons and also suffer because I have to remember ^V (not cmd-v) only in popup dialogs. Is there anything that can be done? The Mac OS L&F makes IntelliJ sluggish.

Vadim Makishvili - 29 Jul 08 12:46
Hello.
On Mac OS C 10.5.4 I'm using:
  • Diana#8526
  • theme Mac Os X
  • keymap Mac Os X

and still have the same problem:
Replace in path: expected - Command-Shift-R, actual Ctrl-Shift-R


Dave Yost - 06 Aug 08 10:01
I should have said I'm using Sand or Alloy or the like, but I want the Mac keybindings. This seems to be hard to do, but it should be made easy to do.