This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-01-22
Channels
- # aatree (21)
- # announcements (10)
- # avi (1)
- # aws (15)
- # beginners (96)
- # boot (269)
- # braid-chat (92)
- # cider (9)
- # clara (10)
- # cljs-dev (3)
- # cljsjs (14)
- # cljsrn (20)
- # clojure (198)
- # clojure-art (3)
- # clojure-hamburg (2)
- # clojure-ireland (4)
- # clojure-russia (117)
- # clojure-spain (3)
- # clojured (1)
- # clojurescript (253)
- # code-reviews (6)
- # community-development (7)
- # conf-proposals (52)
- # core-async (4)
- # cursive (4)
- # datomic (4)
- # devcards (1)
- # emacs (59)
- # euroclojure (5)
- # funcool (1)
- # hoplon (39)
- # human (1)
- # jobs (4)
- # ldnclj (15)
- # ldnproclodo (1)
- # leiningen (3)
- # mount (37)
- # off-topic (14)
- # om (77)
- # perun (10)
- # proton (12)
- # rdf (1)
- # re-frame (9)
- # reagent (42)
- # ring-swagger (10)
- # yada (50)
@bozhidar: am i right to say that inf-clojure only looks at the existence of "build.boot" or "project.clj" to determine the project root, but does not, based on this, run the appropriate inf-clojure-program
hi all (and happy 2016) - running (the excellent) vanilla prelude and when I jump between marks I get a weird animation - any idea what that is and how to turn it off?
actually it happens only in clojure files and happens when I jump a page (i.e. ‘C-v’/‘M-v’)
scrap that - it happens in other modes as well.
just me then ? @bozhidar - any ideas?
hi @jethroksy - any idea what this feature is called so I can disable it
thanks
that’s the one - thanks
whilst I (or more appropriate you :-)) are here - I am struggling to get meta mapped to the right Cmd on El Capitan using terminal.app.
I tried iterm2 but it does funny things with control (so C-= produces 😃.
I have control bound to my CapsLock
googling produced many hits none of which worked - any suggestions? Running in a gui works fine but you know, terminal rocks
yeah, I tried that but it didn’t do anything. All the problems disappear in the GUI, I think I know my answer…
I use it all the time, but that is because I haven’t yet got my keymaps in my muscle memory
loving prelude and helm, rocking my world.
oh yeah - forgot about that
for sure!
that isn’t the problem, it is remembering the previous day’s ones !!!
yeah, unfortunately emacs for me is still a huge yak, but one I quite enjoying petting from time to time
@bozhidar: inf-clojure-completions
returns end of file during parsing
for me:
~/Code/tob/src/tob $ inf-clojure-completions foo
End of file during parsing
boot.user=> (complete.core/completions "hi")
("hiccup.compiler" "hiccup.core" "hiccup.def" "hiccup.page" "hiccup.util")
@jethroksy: file a ticket
I am trying to apply different font-locks (as inspired from https://github.com/danielsz/.emacs.d#pretty-lambda-and-co but I want to distinguish between defn
and defn-
. I added entries for defn
and it works but it ignores the entries for defn-
, I assume because the first regular expression matches.
I tried the following regexp to strictly choose defn
but it didn’t seem to work (("(\\(defn[^-]\\)[\[[:space:]]”
any pointers?
@colin.yates: I don't know much about font-locks, but perhaps the problem is that the regex "defn[^-]" matches "defn " (note the space after the "defn") and so the extra "[:space:]" might be superfluous? Perhaps the regex should be "(defn "?
thanks @dorab, I will experiment a bit further.
hi -- i'm moving from clojure to clojurescript (specifically om next) for the first time and my emacs formatting/indentation is pretty janky with this syntax. has anyone else dealt with this, or is it just something with me/my config?