Reputation: 299
I wonder, why doesn't xCode "act" as a normal editor? For example, when I press Ctrl+X
, I'd like the current line to be copied-cut. When I press Shift+Tab
I'd like the current selection to be shifted to the left, etc. That's the stuff most editors do by default.
How to make it do that?
Upvotes: 0
Views: 77
Reputation: 535306
Take a look at Preferences -> Key Bindings. Here you get a list of actions and their keyboard shortcuts - and you can change those keyboard shortcuts!
It's quite amazing how many actions there are, including a great number of familiar Emacs actions such as mark and yank. Many of them have no corresponding menu item; many of them have no keyboard shortcut by default. Some of them may be the things you are looking for, and all you need to do is change the shortcut if you don't like it. It is very possible that you'll find at least some bindings that you can use to make Xcode behave in a more familiar way.
Upvotes: 1