This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-12-31
Channels
- # adventofcode (15)
- # announcements (3)
- # babashka (38)
- # beginners (121)
- # calva (29)
- # cider (21)
- # circleci (1)
- # clojure (177)
- # clojure-europe (7)
- # clojure-france (2)
- # clojure-nl (7)
- # clojure-spec (3)
- # clojure-switzerland (5)
- # clojure-uk (4)
- # clojurescript (10)
- # code-reviews (1)
- # conjure (19)
- # deps-new (2)
- # emacs (5)
- # fulcro (52)
- # graalvm (13)
- # kaocha (1)
- # malli (1)
- # off-topic (6)
- # pathom (5)
- # re-frame (17)
- # reagent (14)
- # remote-jobs (1)
- # rewrite-clj (5)
- # robots (1)
- # shadow-cljs (13)
- # sql (38)
- # tools-deps (16)
- # xtdb (99)
If I have two sessions, one for clj and another for cljs. Can I auto switch session between them for clj/cljs files?
@olical heads up, it looks like the master -> main
transition made it so that i had to intervene manually in order to update via vim-plug
i ran :PlugUpdate
today and conjure was not included in the updates, even though it should have been included
i have the plugin specified in my vimrc as:
Plug 'Olical/conjure'
so i think what happened is, even though i didn't explicitly specify to track master
, i already had the repo cloned in my ~/.vim/bundle
directory tracking the master branch, and i think vim-plug is essentially just cd-ing into that directory and running git pull
. and git pull
would just pull and see that there are no new commits on master
you might want to make sure people are aware of this change, because apparently some manual intervention is needed in order to get versions newer than the last commit on what was origin/master
i'm going to delete and re-install conjure, just to be sure that future updates will work
interesting! upon running :PlugInstall
, i got this error:
x conjure:
fatal: invalid reference: master
so apparently vim-plug defaults to master?i realize i'm doing something other than what the README says to do 🙂 the README says to specify the plugin as:
Plug 'Olical/conjure', {'tag': 'v4.11.0'}
i've always figured master/main is stable enough, and if an update does cause breakage (which happens only rarely), i know i can always come here for helpOh no, that's awful, thank you for the heads up. I could've sworn I read that GitHub will handle the redirection on their end in a blog post :(
Poooosibly, although I think it's a git thing really. If vim-plug did a harder reset it'd probably be okay but maybe have other tradeoffs.
You know what, I'm going to swap it back, I know it'll be annoying for you and @U0DTSCAUU but I should've researched this
I agree with @U0AHJUHJN, I think this is more about vim-plug. I’m still not sure what the problem was. Plug had checked out the v4.11.0
tag, so I’m not sure why it cared what another branch was called.