Fork me on GitHub
#spacemacs
<
2016-01-18
>
Drew Verlee02:01:15

@escherize: it seems like clojure-refactor is having trouble. I'll try to figure it out when im less tired. thanks for the help!

escherize04:01:23

cljr-/ has been crashing for me for a while too, actually

escherize04:01:01

when I type Thread/... into a buffer the repl tends to throw an exception

dima08:01:49

How to start emacs fullscreen on OSX? (dotspacemacs-fullscreen-at-startup t) doesn’t work

hkjels11:01:24

(setq-default dotspacemacs-fullscreen-at-startup t)

hkjels11:01:15

@trybeee: sorry for the late reply, saw your message just now

janiczek13:01:38

This is also nice in dotspacemacs/user-config:

(evil-leader/set-key "of" 'spacemacs/toggle-fullscreen)
And then you do SPC o f to toggle between fullscreen and windowed.

dima17:01:10

janiczek: thanks, SPC T F works for me. Just wanted it to be automatically on startup.

dima17:01:59

hkjels: thanks, but this doesn’t work. I have a feeling that fn calls inside dotspacemacs/user-config aren’t executed on startup

janiczek17:01:05

@trybeee ah! didn't know about SPC T F simple_smile thanks

chris17:01:02

@trybeee: you need dotspacemacs-fullscreen-at-startup t in the dotspacemacs/init rather than dotspacemacs/user-config

dima17:01:28

chris: it works if i place it to dotspacemacs/user-init. But doesn’t work in dotspacemacs/init. thank you

Drew Verlee19:01:51

@escherize: continuing our conversation about the "/" causing a problem (opening a repl and complaining about nrepl and lein being out of sync) i was able to fix this by adding clojure refactor to my plugins in the project.clj (as per the instructions right on the clojure refactor page).

Drew Verlee19:01:55

at anyone, whats the best way to change data structures? Say i have a ( (1 2 3) [3 4 5]) and i want to change the second form i.e [3 4 5] to (3 4 5)?

chris19:01:17

spacemacs includes a port of vim-surround

chris19:01:44

so put your cursor inside the [] and type cs[)

chris19:01:03

assuming you use the vim editing mode

chris19:01:31

more on surround

Drew Verlee20:01:29

@chris, thats awesome. I was worried i had lost vim-surround.

chris20:01:35

spacemacs includes a few ports, like argtextobj.vim and vim-surround, plus a port of nerd commenter, maybe some other stuff too