what about using vim with your terminal set to full-screen mode? Edit: or in-terminal emacs ;) iTerm for Mac OS X has a nice full-screen mode
PyRoom — distraction free writing
11–20 of 34 posts
Re: PyRoom — distraction free writing
#12I'm still waiting for the app that makes other household members shut up... now that would be distraction-free writing. :-)
Re: PyRoom — distraction free writing
#13Re: PyRoom — distraction free writing
#14what about using vim with your terminal set to full-screen mode? Edit: or in-terminal emacs ;) iTerm for Mac OS X has a nice full-screen mode
Honestly, I'd like to do this but have a margin on the sides but haven't figured out how. I would forever be your e-servant if you know how to do that. I'm sure I could figure out some hack, but it's just something I'd rather not work on.
(defun fullscreen ()
(interactive)
(let (f w l r cb b)
(setq cb (current-buffer))
(setq b (switch-to-buffer "*NOSUCHBUFFER*")) ;Temp buffer otherwise
(setq f (make-frame '((fullscreen . fullboth)))) ;settings don't take effect
(select-frame-set-input-focus f)
(setq w (frame-width f))
(setq l (/ (- w 80) 2))
(setq r (- w (+ l 80)))
(seq-default left-margin-width l
right-margin-width r)
(delete-other-frames f) ;Only one main window
(kill-buffer b) ;Kill temp buffer - now original buffer will get new margins
(switch-to-buffer cb)))
(defun fullscreen-off ()
(interactive)
(let (f cb b p)
(setq cb (current-buffer))
(setq b (switch-to-buffer "*NOSUCHBUFFER*")) ;Temp buffer
(setq-default left-margin-width nil
right-margin-width nil)
(kill-buffer b)
(delete-other-frames (make-frame))
(switch-to-buffer cb)))Re: PyRoom — distraction free writing
#15clean darkroom
and with menu
Re: PyRoom — distraction free writing
#16I'm still waiting for the app that makes other household members shut up... now that would be distraction-free writing. :-)
It's not an app, and it doesn't work for others, but for you: use noise-canceling headphones.
Re: PyRoom — distraction free writing
#17Re: PyRoom — distraction free writing
#18I'm still waiting for the app that makes other household members shut up... now that would be distraction-free writing. :-)
It's not an app, and it doesn't work for others, but for you: use noise-canceling headphones.
Re: PyRoom — distraction free writing
#19Why? It's not a programming editor. And, judging by the other comments, programmers don't want this, as they can get pretty much the same layout in Emacs.
Change the name and start using a better font for prose and you've got yourself a much larger and more suitable audience.
Re: PyRoom — distraction free writing
#20Looks like it's targeted squarely at programmers, given the name ("Py*") and the screenshot (green monospaced font on black). Why? It's not a programming editor. And, judging by the other comments, programmers don't want this, as they can get pretty much the same layout in Emacs. Change the name and start using a better font for prose and you've got yourself a much larger and more suitable audience.