This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-03-12
Channels
- # aleph (10)
- # beginners (62)
- # boot (12)
- # cider (97)
- # cljs-dev (171)
- # clojars (1)
- # clojure (224)
- # clojure-italy (4)
- # clojure-nl (2)
- # clojure-russia (1)
- # clojure-spec (41)
- # clojure-uk (68)
- # clojured (7)
- # clojurescript (115)
- # community-development (4)
- # cursive (2)
- # data-science (1)
- # datomic (18)
- # duct (40)
- # emacs (1)
- # events (1)
- # fulcro (148)
- # funcool (2)
- # graphql (2)
- # immutant (3)
- # jobs (3)
- # keechma (1)
- # luminus (2)
- # numerical-computing (1)
- # off-topic (19)
- # om (6)
- # parinfer (10)
- # pedestal (15)
- # precept (86)
- # reagent (12)
- # ring (3)
- # ring-swagger (2)
- # shadow-cljs (42)
- # spacemacs (19)
- # specter (17)
- # sql (11)
- # tools-deps (78)
- # unrepl (62)
- # vim (28)
I suggest M-x zone-when-idle 3 😛
Incase you want to stop the madness - zone-leave-me-alone
yeah, totally they should've used emacs screen with zone in Westworld, instead screenshots of react source code
After a recent SM + package update, I'm getting this horribly obnoxious behavior -- when I start a helm command that pops up a separate popup buffer in the current frame (eg SPC p h
), it instead opens it in a totally separate frame, ie a popup window (in the OS sense of window). Worse, the active window is often still the original window in the background, so when I start typing chars (eg a few chars of a filename to search for) it starts doing random things in the background that I don't see.
Anyone else encountered this nasty little bugger? I'm struggling not to throw my laptop out the window...
When it happens, I get this in the terminal from which I started emacs: (emacs:19446): Gtk-WARNING **: gtk_window_parse_geometry() called on a window with no visible children; the window should be set up before gtk_window_parse_geometry() is called.
Whew, found it. To prevent this, you need to
(setq helm-use-frame-when-more-than-two-windows nil)
That variable was added in a recent helm commit, and apparently the author decided everyone would want this hideous behavior 😠 😉Bit of detail at https://emacs.stackexchange.com/questions/39311/prevent-helm-from-opening-in-a-new-frame
Yikes—that does sound like quite the annoying default.
@eggsyntax recommended way to switch back to previous Helm behaviour (i.e. no pop-up) is to add this to the layer section in ~/.spacemacs
(helm :variables
helm-use-frame-when-more-than-two-windows nil)