I have some processes that are executed from functions, i.e.: Mx run-proc1 Mx run-proc2
I would like to know what command to issue from the command line to start emacs with run-proc1 working in the upper window and run-proc2 working in the lower window.
run-proc1
run-proc2
Thanks!
You can get better answers later, but adding this to your ~ / .emacs.d / init.el may work.
(split-window-vertically) (run-proc1) (other-window) (run-proc2) (other-window)
Alternatively (for a different approach), see this link .
Source: https://habr.com/ru/post/1310556/More articles:Request date JPG applications - dateRecommended approach for handling errors using PHP and MYSQL - phpConvert Large Xml Files - c #What is the best way to handle the required patch for Perl / Tk? - perlValidating large Xml files - c #How to get focus on one of the jQuery Dialog buttons on an ASP.NET MVC page? - jquerymacrocross all in visual studio 2010 solution - visual-studioPass method for function - javascriptpostgres - multi-column group - master / part type table - group-byOffsite data storage for a simple application or a similar supported storage mechanism? - facebookAll Articles