Earlier quoted context omitted.
Don't you frequently deal with: /private/tmp/foo.txt locked by jnpatel@mac... (pid 14836): (s, q, p, ?)? because of the lock files?
Nope, because emacsclient ends up opening them all in the same process (that's the beauty/entire point): Fork off an emacs in the background: emacs --daemon Then run emacsclient to connect to it (open a new buffer in the daemon and switch to it): emacsclient -nw some_file When you "quit" (with C-x C-c), it really just quits that client, but the main emacs is left running. This has a number of benefits: 1) no locks li…
Show HN: Twitch Installs Arch Linux – A cooperative text-based horror game
231–240 of 266 posts
Re: Show HN: Twitch Installs Arch Linux – A cooperative text-based horror game
#232I'm afraid they'll manage to launch vim and will never be able to get out.
Or emacs. Or vim inside emacs' terminal emulator.
I've been there, by accident, two or three times.
The first time was really scary, since I did not know vi, yet, and did not know how to exit it or what in the world was going on...
Re: Show HN: Twitch Installs Arch Linux – A cooperative text-based horror game
#233Not Gentoo?
Gentoo is real hard, but I've heard from people the Arch install is even more painful :/
Re: Show HN: Twitch Installs Arch Linux – A cooperative text-based horror game
#234Hey guys, author here. Feel free to ask any questions, and I'll try my best to answer them!
How will you handle special key combinations such as Ctrl+C to interrupt what's running? It looks like it will be the second-generation democracy mode. That looks a bit too easy: in theory we would simply have to follow the install guide line-by-line and it would work.
Re: Show HN: Twitch Installs Arch Linux – A cooperative text-based horror game
#235Re: Show HN: Twitch Installs Arch Linux – A cooperative text-based horror game
#236But ... Why? What's the point?
Hopefully people learn some tactics which might be applied in similar situations in their own lives.
Re: Show HN: Twitch Installs Arch Linux – A cooperative text-based horror game
#237But ... Why? What's the point?
Re: Show HN: Twitch Installs Arch Linux – A cooperative text-based horror game
#238Hey guys, author here. Feel free to ask any questions, and I'll try my best to answer them!
How will you handle special key combinations such as Ctrl+C to interrupt what's running? It looks like it will be the second-generation democracy mode. That looks a bit too easy: in theory we would simply have to follow the install guide line-by-line and it would work.
https://raw.githubusercontent.com/twitchinstallsarchlinux/tw...
Re: Show HN: Twitch Installs Arch Linux – A cooperative text-based horror game
#239Re: Show HN: Twitch Installs Arch Linux – A cooperative text-based horror game
#240Earlier quoted context omitted.
it doesn't, ctrl-z only suspends process and switches to backgroud - the thing is still alive try ctrl-z and then type bg command - you will see a list, you can resume with fg [number]
Ctrl-z by itself doesn't actually switch the process to run in the background, it stops the process. Running 'bg' is what starts the process back up running in the background, 'fg', like you said, resumes the process in the foreground and 'jobs' is the command you can run to see a list of processes that are running.