Is there an org-mode emacs option for z / assembler?

I would like to use emacs to develop z / Assembler code in org-mode (I will worry about exporting later). The specific needs that I see are as follows:

  • Since "*" starts the z / Asm comment, use a different character ("=", say) to define the headers. I tried # outline-regexp:[=]+in "Local Variables:" at the beginning of the file, but without success.
  • I would, for example, use tabs at regular z / Asm points, but # tab-stop-list:(1,10,16,36,72)does not indicate the correct tab stops.
  • Related to this, I would like to link the state of the “simple tab” org-cycleto tab-to-tab-stop. I don’t even see how through "Local variables:"
  • Ideally, I need an org mode option, possibly related to the .zorg extension (no matter what “just happened”).

Does anyone know emacs code to do something like this?

I am not an expert in emacs guts, not Lisp, so please come with me - I don't know what I'm doing.

If you think this is off topic, do not hesitate to transfer it to the superuser (although I believe that it is better suited here).

+3
source share
1 answer

You will most likely want to check minor mode orgstruct-modeinstead of org-mode itself.

Also try changing org-outline-regexpinstead outline-regexp.

Unfortunately, there is no z / Assembler support for Org Babel.

+1
source

All Articles