This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-10-14
Channels
- # announcements (9)
- # beginners (49)
- # calva (26)
- # cider (6)
- # clj-kondo (17)
- # cljsjs (1)
- # cljsrn (2)
- # clojure (72)
- # clojure-europe (5)
- # clojure-france (8)
- # clojure-greece (1)
- # clojure-italy (5)
- # clojure-nl (9)
- # clojure-spec (49)
- # clojure-uk (17)
- # clojuredesign-podcast (13)
- # clojurescript (137)
- # cursive (15)
- # data-science (1)
- # datomic (55)
- # duct (2)
- # emacs (5)
- # figwheel-main (11)
- # fulcro (11)
- # graphql (1)
- # hoplon (1)
- # instaparse (1)
- # jobs (12)
- # jobs-rus (1)
- # leiningen (1)
- # nrepl (34)
- # nyc (2)
- # off-topic (1)
- # onyx (1)
- # pedestal (1)
- # re-frame (6)
- # reitit (3)
- # remote-jobs (1)
- # shadow-cljs (196)
- # sim-testing (1)
- # spacemacs (9)
- # sql (1)
- # vim (70)
- # xtdb (31)
@jr0cket thanks, that solved the problem. Even my test ns were not being picked up bcoz it was not on the path. I had to manually evaluate each ns before !
I added a short section on using Multiple Cursors, now its included by default when installing the develop
branch.
https://practicalli.github.io/spacemacs/editing/evil-tools/multiple-cursors.html
I am interested how people are using multiple cursors, especially as you can call Emacs functions / commands on the cursors, so you can do more than simple editing. Thanks.
@U067P1FT2 do you use iedit instead? If you do not use iedit either, how do you do search and replace?
I use combination of both mc-evil and iedit and narrowing.
usually what I would do is:
- narrow to a region or fn SPC n r
SPC n f
- then using mc-evil or iEdit do the changes. Most of the time I use iEdit, but sometimes it can be limiting since it doesn’t give you an easy way to “skip” things you don’t want to change
Funny I just installed evil-mc. I like it's though it's a bit too modal with the pause-resume feature. Most of the time I use iedit since I need to manipulate multiple of the same thing. I always wish for good multiple-cursors when doing things like making mocked data by hand or something less code centric.
@jr0cket Well, i use the regular vi or emacs style search-and-replace in the file or project.
a good addition I think would be good for evil-mc would be to automatically pause when adding cursors and automatically resume when doing something like insert
I'll probably do it on my own config