Suppose I have this code:
{
"type" : "home",
"number":"212 555-1234"
}
I want my emacs to automatically insert space after colon in some modes.
Particularly I’m using javascript-mode based on cc-mode. Can it help?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The simplest way to do this would be something like this (in your .emacs):
More sophisticated alternatives include yasnippet or skeleton mode. They are probably overkill for something this simple, but are useful tools if you want more sophisticated templating.
EDIT: I’m not aware of any cc-mode magic that allows for different behaviour inside comments. I don’t use cc-mode much, but I don’t see anything obvious in the manual. Here’s a bit of code that may do what you want though: