Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
688 views

A 'hello world' example for a major mode in Emacs?

Can anyone provide me with a hello world example for a major mode in emacs? I guess it's a beginner question, still I really like to write a major mode, both to learn emacs and elisp, as to be able ...
5
votes
3answers
281 views

How to reload an emacs major mode?

I have a buffer in some major-mode, and in another buffer the mode file itself (*.el). After I edit the *.el file I want to see the changes reflected in the first buffer, without restarting emacs. I ...
3
votes
2answers
312 views

Redefine major mode prefix key in Emacs

I've been trying teach myself emacs, and because I am using dvorak, I foolishly rebound C-c to a movement key and got used to it. Now i'm actually starting to do some programming with it, and I loaded ...
3
votes
1answer
386 views

Highlighting correctly in an emacs major mode

I am developing an emacs major mode for a language (aka mydsl). However, using the techniques on xahlee's site doesn't seem to be working for some reason (possibly older emacs dialect..) The key ...
2
votes
1answer
79 views

How to start a specific mode with emacs?

Users use 'M-x auto-revert-mode' for starting auto revert mode. How can I set the .emacs file to do the same thing when emacs starts? How to start a specific mode, when a major mode starts? For ...
1
vote
1answer
41 views

Unable to register major mode

I have a major mode I created at https://github.com/secondplanet/elixir-mode/blob/master/elixir-mode.el, but when I require it in my ~/.emacs, and then try to type M-x elixir-mode, I'm told the ...
1
vote
1answer
231 views

Emacs: Set fill-column in Change Log Mode

Very specific question that I hope is not too dumb. (setq-default fill-column 120) sets the width of the buffer fill to 120 columns. Default for me otherwise is 74. This command, when put in my ...
0
votes
2answers
37 views

Emacs Adding Preprocessor to Major Mode

I am trying to modify the fortran major mode to work with a preprocessor a colleague wrote. The preprocessor directives are all prefixed by a "." for example: .set .macro function similar to C's ...
0
votes
2answers
84 views

Emacs: How to disable specific global mode in major-mode hook?

I use global-autopair-mode, but with Ruby the ruby-electric-mode provides better autopairing. I'm a n00b to Emacs and Lisp, so I would have thought you could do something like: (add-hook ...
0
votes
1answer
83 views

Getting Emacs indentation to work correctly in major mode

I am writing a major-mode in emacs for a DSL I've created. I'm inheriting from fundamental-mode, which tabs out way far (6 tab stops, I think). I'd like to be able to define: (setq mydsl-tab-width ...
0
votes
1answer
84 views

Emacs syntax highlighing for PL/M

I'm about to start a new consultancy gig where I will end up dipping my toes into some PL/M. I have tried to locate a major-mode for PL/M but have so far been unsuccessful. Anyone here that can point ...