This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-07-03
Channels
- # aws (1)
- # beginners (5)
- # boot (46)
- # cider (6)
- # cljs-dev (421)
- # cljsrn (74)
- # clojure (77)
- # clojure-greece (1)
- # clojure-italy (7)
- # clojure-russia (12)
- # clojure-serbia (42)
- # clojure-sg (1)
- # clojure-spec (10)
- # clojure-uk (38)
- # clojurescript (40)
- # core-async (14)
- # data-science (1)
- # datomic (18)
- # emacs (2)
- # events (1)
- # garden (4)
- # gorilla (4)
- # graphql (5)
- # hoplon (69)
- # luminus (1)
- # lumo (1)
- # off-topic (31)
- # om (31)
- # om-next (2)
- # overtone (3)
- # pedestal (1)
- # precept (4)
- # re-frame (23)
- # reagent (2)
- # remote-jobs (1)
- # ring-swagger (23)
- # rum (7)
- # spacemacs (7)
- # sql (4)
- # unrepl (9)
- # untangled (5)
- # vim (11)
- # yada (5)
Anyone done a package update and had the behaviour of SPC k s
(sp-foward-slurp-sexp) change in that it no longer adds a space after slurping the next form?
shan: wondering if you ever figured out what this was. Still see it happening occasionally - annoying to have to manually put in the
!
Never looked too deeply into this, I just end up adding a space before I do the slurping now
hi. Anyone have any ideea how I can set sortcut for something like next-layout ? (global-set-key (kbd "M-p") 'spacemacs/layouts-trainsientstate/persp-next)
@claudiu I've added the following keybindings in dotspacemacs/user-config
section of .spacemacs
to cycle through buffers
(global-set-key [C-prior] 'previous-buffer)
(global-set-key [C-next] 'next-buffer)
I also used a slightly different syntax for smartparens bindings (both approaches seem to work, not sure of the difference)
(define-key global-map (kbd "C-)") 'sp-forward-slurp-sexp)
(define-key global-map (kbd "C-(") 'sp-backward-slurp-sexp)
(define-key global-map (kbd "M-)") 'sp-forward-barf-sexp)
(define-key global-map (kbd "M-(") 'sp-backward-barf-sexp)
I've also seen Spacemacs specific examples, this one stops the mouse key from calling a function
(define-key spacemacs-buffer-mode-map [down-mouse-1] nil)