Code Monkey home page Code Monkey logo

Comments (3)

ejmr avatar ejmr commented on July 17, 2024

The binding for M-j comes from c-mode, from which php-mode is derived. I do not want to make a change to php-mode that would break the consistent behavior of M-j found in c-mode and its derivatives. Admittedly because the default behavior of M-j is something I have relied on for a long time.

You can rebind the key yourself, but unfortunately a simple global-set-key will not do the trick. Despite the name, any mode can come along and rebind a key that you bound globally in your dot-emacs file. The Emacs documentation unapologetically says any binding is fair game for modes except for C-c x, where x is any single key without a modifier (e.g. C-c a is off-limits to modes but C-c C-a is not). But you can still bind M-j to a custom command. First keep the global-set-key call which I assume you have. Then add a hook that re-rebinds the key for php-mode. Something like:

(add-hook 'php-mode-hook (lambda () (define-key php-mode-map (kbd "M-j") 'your-custom-command)

If you only want to disable a key in a mode instead of rebind it then you can use the function local-unset-key. Hope that helps. Please let me know if it doesn't work or causes any other problems.

from php-mode.

 avatar commented on July 17, 2024

Yep, it works. But you forgot two closing parentheses at the end. Thank you very much.

from php-mode.

ejmr avatar ejmr commented on July 17, 2024

Heh sorry about that. Consider all the Lisp I have written you think I would have instinctively banged on the closing parenthesis over and over. My mistake.

from php-mode.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.