Understanding How to Key C-> on Mac emacs

Asked 1 years ago, Updated 1 years ago, 49 views

I wanted to use mark-multiple, so I installed it on emacs.
The settings are as follows, but

 (require'mark-more-like-this)
(global-set-key(kbd "C-<")'mark-previous-like-this)
(global-set-key(kbd "C->")'mark-next-like-this)

If you actually press Control+. on the Mac emacs, a period will be entered.
Which key should I press?

Github Page
https://github.com/magnars/mark-multiple.el

emacs

2022-09-30 19:11

2 Answers

As Yuki Inoue replied, C-. and C-> may not be handled correctly in some environments.However, if you want to enter C-> or C-< even in an environment where you can handle it correctly, you must also press Shift.(I think you will press Shift+. when you enter >, but it will increase Control.)


2022-09-30 19:11

Are you talking about emacs running on the terminal?

Depending on the type of terminal, C-. or C-> cannot be handled correctly.In particular, it is definitely not possible with the terminal that is in the mac by default.Note: What are the typical "terminal (emulator)" specifications?

Therefore, you should be able to use gnuemacs for mac as a GUI application or run it on xterm.


2022-09-30 19:11

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.