This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-10-03
Channels
- # aleph (5)
- # announcements (4)
- # babashka (2)
- # beginners (52)
- # calva (13)
- # cider (60)
- # clj-kondo (91)
- # cljsrn (6)
- # clojure (93)
- # clojure-brasil (2)
- # clojure-dev (37)
- # clojure-europe (5)
- # clojure-italy (7)
- # clojure-nl (8)
- # clojure-norway (1)
- # clojure-sg (1)
- # clojure-spec (115)
- # clojure-uk (31)
- # clojurescript (32)
- # cursive (35)
- # data-science (4)
- # datascript (3)
- # datomic (29)
- # emacs (8)
- # events (1)
- # figwheel (1)
- # funcool (2)
- # graalvm (2)
- # joker (12)
- # kaocha (4)
- # lein-figwheel (1)
- # leiningen (34)
- # malli (7)
- # off-topic (4)
- # overtone (1)
- # parinfer (2)
- # pathom (5)
- # quil (1)
- # re-frame (12)
- # reagent (2)
- # shadow-cljs (7)
- # spacemacs (6)
- # sql (8)
- # tools-deps (63)
- # vim (24)
quite often I want to do a projectile action on another project from the one I'm on
for example search a string, and at the moment I always have to
- switch project with projectile-switch-project
- call the desired projectile action
I wonder if I could merge the two things, I could just redefine other key-strokes merging the switch and the actual action I need
anyone has a better solution though? Anyone else has the same "problem"?
I don't know but for "projects" I use often (meaning leiningen/git projects) I just defined a single projectile project by putting them into a single directory and creating .projectile
I have a macro that handles a special form inside its body and I would like to have a style/indent for it, can I do that knowing it is not defed anywhere and I would like to avoid to bake it inside my emacs config and make it project wide?
@andrea.crotti do you have layouts installed (its part of Spacemacs by default). You can have a layout for each project and use SPC l
to switch between them, or if you have just two projects SPC l TAB
will switch between them.
Then you can call a project specific action.
As @jumar mentioned, I sometimes create a blank .projectile
file in the root of all my projects and then I can run searches through them. Then just delete that file when I am done to go back to specific git projects.