May 2018
Intermediate to advanced
168 pages
4h 2m
English
| Tip 25 | Restarting Terminal Processes When Resuming a Session |

If you’re running Neovim, you might also want your session file to record details of which processes were running in terminal buffers. By taking care to name your terminal buffers appropriately, you can make your processes resume when you restore a session.
The source code that accompanies this book includes a webapp directory. Switch to that directory and install the dependencies:
| => | $ cd code/webapp |
| => | $ npm install |
This directory contains a simple web server. You can start the server by running:
| => | $ npm run server |
You’ll also find a small test suite, which ...