Нужно сохранить список открытых файлов и в дальнейшем вместо каждого в отдельности открывать их как один(что-то вроде закладки,но не на один файл, а на несколько) Как?
А конкретный рецептик можно (для таких тупых и ленивых как я:-))? А то при редактировании текста программы есть необходимость держать открытыми еще как минимум два файла (C-x 3 и C-x 2 в купе с C-x C-f делают свое дело), хотелось бы обезьянью работы по их открытию при старте emacs-а свести к минимуму.
You can use the Desktop library to save the state of Emacs from one session to another. Saving the state means that Emacs starts up with the same set of buffers, major modes, buffer positions, and so on that the previous Emacs session had.
To use Desktop, you should use the Customization buffer (see section Easy Customization Interface) to set desktop-enable to a non-nil value, or add these lines at the end of your `.emacs' file:
Спасибо! Почти работает: команды desktop-load-default у меня почему-то нет, desktop-read открывает все необходимые файлы, вот только разбивку окна emacs-а на несколько не сохраняет. Это как-нибудь правится? Или как всегда, "нет в жизни счастья"?:)
The first time you save the state of the Emacs session, you must do it manually, with the command M-x desktop-save. Once you have done that, exiting Emacs will save the state again--not only the present Emacs session, but also subsequent sessions. You can also save the state at any time, without exiting Emacs, by typing M-x desktop-save again.
Именно так и делал, файлы в буферы грузит, а вот окошки не открывает (т.е. C-X 3 & C-X 2 все еще приходится нажимать, а вместо C-X F теперь жму C-X B для переключения буферов).