Is there a way in lisp state to move by clojure map keys?
I see! I don't believe there's a shortcut for that other than 'move 2 symbols forward' SPC K 2 l
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.
move by symbol isn't right nor is by parns
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.
but it would be nice to know if there is a way to do this.
I'm not sure what you mean by this, do you mind rephrasing?
My cursior is the * {:A* :b :c :d} I want to jump to the next key (:c). Does anything do this?