How to modify the MajorMode shortcut in emacs

Source: Internet
Author: User

We know that the format for modifying global shortcuts in emacs is as follows:

(Global-set-key key command)

For example, bind M-j to the find-file function as follows:

(Global-set-key (kbd "M-j") 'Find-file)
So, how do I modify the shortcut keys in a specific Major Mode?

The basic format is as follows:

(Global-set-key keymap key command)

Here there is a KEYMAP name, that is, each Major Mode has a KEYMAP name.

Take php-mode as an example. If I want to bind M-j to the find-file function in Major mode of php-Mode,

The method is as follows:

(Require 'php-mode) (define-key php-mode-map (kbd "M-j") 'Find-file)
Note: This requires php-mode first, and the corresponding KEYMAP name is found from the php-mode.el File

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.