spacemacs

Spacemacs docs: http://develop.spacemacs.org/doc/DOCUMENTATION.html http://develop.spacemacs.org/layers/+lang/clojure/README.html https://practicalli.github.io/spacemacs/
2020-05-30T20:38:09.256700Z

Is there a way in lisp state to move by clojure map keys?

aisamu 2020-05-31T13:06:44.262300Z

I see! I don't believe there's a shortcut for that other than 'move 2 symbols forward' SPC K 2 l

2020-05-31T19:55:57.262500Z

Thanks. In this case the map value is just one symbol, in a lot of others it's many more. I think the solution is that I'll read the map/edn into memory and just add keys that way then write it back out. Similar to how I work with a database.

2020-05-30T20:38:31.257200Z

move by symbol isn't right nor is by parns

2020-05-30T20:39:21.258300Z

I think in the use case i'm in i should just read the map (which is really large) into memory and alter it there then just write it back out.

2020-05-30T20:39:32.258600Z

but it would be nice to know if there is a way to do this.

aisamu 2020-05-30T21:58:46.258700Z

I'm not sure what you mean by this, do you mind rephrasing?

2020-05-30T23:02:41.259100Z

My cursior is the * {:A* :b :c :d} I want to jump to the next key (:c). Does anything do this?