Fork me on GitHub
#emacs
<
2018-05-30
>
nha10:05:15

what is the setting to configure the amount of spaces used when indenting? (I saw https://github.com/clojure-emacs/clojure-mode#indentation-options - using (setq clojure-indent-style ':align-arguments)). Right now it indents like that for me:

(a
  (b))
I would like to get one space:
(a
 (b))

troglotit11:05:57

Hey! How to execute :g/my-string/d for whole project in spacemacs? Solved it using \n find and replace

jeff.terrell17:05:18

BTW, there's a #spacemacs channel too.

bozhidar12:05:06

@nha Currently that’s not configurable. At least I don’t remember it being configurable.

simple_smile 4
nha16:05:57

ok np. I must have something setup differently than my cowerkers

nha16:05:11

(I am the only one using spacemacs though)

theeternalpulse18:05:02

Is there a way to get autocomplete (inline possibly) for the evil-ex minibuffer?

mhcat22:05:12

@nha I think you want :always-align rather than :align-arguments

mhcat22:05:53

that's the default style for all lisps in emacs I think, which all other editors/IDEs don't do - I think think that's why the :align-arguments alternative was introduced

😆 4