How to start another mode using Emacs on the command line?

Is there a way to start another emacs mode using the command line? For example, is it possible to run emacs as follows?

emacs --org-mode # to start orgmode emacs --python-mode # to start python mode 

I can just run emacs to enter β€œMx org-mode” after that, but I wonder if I can start different modes.

+6
emacs mode
source share
1 answer

You can call functions with the -f argument, therefore, to start use in org-mode:

 emacs -f org-mode 
+12
source share

All Articles