This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-05-22
Channels
- # announcements (2)
- # aws (5)
- # babashka (17)
- # beginners (108)
- # calva (28)
- # chlorine-clover (7)
- # clj-kondo (14)
- # cljs-dev (9)
- # cljsrn (2)
- # clojure (118)
- # clojure-europe (50)
- # clojure-finland (5)
- # clojure-france (15)
- # clojure-italy (9)
- # clojure-nl (14)
- # clojure-spec (11)
- # clojure-uk (43)
- # clojuredesign-podcast (1)
- # clojurescript (35)
- # clojutre (2)
- # clr (3)
- # community-development (6)
- # conjure (9)
- # core-async (41)
- # cursive (7)
- # data-science (7)
- # datomic (11)
- # events (1)
- # figwheel-main (4)
- # fulcro (20)
- # ghostwheel (9)
- # graalvm (18)
- # helix (46)
- # leiningen (14)
- # observability (2)
- # off-topic (23)
- # pathom (4)
- # re-frame (5)
- # reitit (5)
- # rum (2)
- # shadow-cljs (32)
- # spacemacs (8)
- # specter (5)
- # sql (36)
- # timbre (3)
- # vim (15)
- # xtdb (2)
- # yada (2)
in vim-iced, is there a way to change the behavior of the stdout buffer? It opens in a horizontal split and I would prefer if it opened in a vsplit
also, are there any plans to add a "send to repl" feature so that you can see the output in the repl process?
@tomgeorge See https://liquidz.github.io/vim-iced/vim-iced.html#g%3Aiced%23buffer%23stdout%23mods for the stdout buffer position
> also, are there any plans to add a "send to repl" feature so that you can see the output in the repl process?
Currently, there is no way.
When you use clojure.tools.logging
, you may see the log in your repl.
I've thought about making a vim plugin that would attach a "target" buffer to your current buffer, and send your region / selection / motion etc. to that buffer followed by a newline with a single keypress
just super generic (so it works when I'm dabbling with sql, guile, clojure...)
maybe this weekend :D
oh but that wouldn't help here, as that's a stdout buffer and not a repl buffer
would the target buffer be a terminal buffer? if so, that sounds a lot like https://github.com/kassio/neoterm
I mean, given the amount of the vim source that is specifically for operating systems you can't even legally acquire any more...
@dave yeah that looks a lot like what I was thinking of... somehow in my searching I didn't find that lib