This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-05-10
Channels
- # announcements (4)
- # beginners (111)
- # boot (34)
- # cider (67)
- # cljdoc (10)
- # clojure (90)
- # clojure-dev (37)
- # clojure-europe (3)
- # clojure-gamedev (3)
- # clojure-italy (18)
- # clojure-losangeles (2)
- # clojure-nl (27)
- # clojure-spec (24)
- # clojure-uk (59)
- # clojurescript (41)
- # cursive (32)
- # datomic (31)
- # emacs (21)
- # figwheel (1)
- # figwheel-main (2)
- # fulcro (43)
- # graalvm (6)
- # graphql (3)
- # jobs-discuss (3)
- # kaocha (1)
- # nyc (1)
- # off-topic (22)
- # pathom (10)
- # pedestal (11)
- # re-frame (9)
- # reitit (17)
- # shadow-cljs (15)
- # spacemacs (13)
- # sql (6)
- # testing (5)
- # tools-deps (3)
- # vim (13)
- # yada (1)
@dominicm I'd love to get something for this, even if it's a dirty hack that won't last
diff --git a/plugin/fireplace.vim b/plugin/fireplace.vim
index a6531b9..7e4b339 100644
--- a/plugin/fireplace.vim
+++ b/plugin/fireplace.vim
@@ -1063,6 +1063,7 @@ function! s:add_pprint_opts(msg) abort
let a:msg.pprint = 1
let a:msg.pprint_fn = get(g:, 'fireplace_pprint_fn', 'cider.nrepl.middleware.pprint/fipp-pprint')
+ let a:msg['nrepl.middleware.print/print'] = get(g:, 'fireplace_pprint_fn', 'cider.nrepl.pprint/fipp-pprint')
let max_right_margin = get(g:, 'fireplace_print_right_margin', &columns)
let a:msg.print_right_margin = min([l:max_right_margin, &columns])
if exists("g:fireplace_print_length")
Is anyone using neovim + deoplete. If so, I was wondering, is it possible for it to complete via a lookup, when typing in a require? i.e., If I'm typing in (:require [clojure.te
can I get it to start to offer suggestions for the te
?