emacs

Consider also joining #cider, #lsp and #inf-clojure, where most of the tool-specific discussions are happening.
practicalli-john 2021-04-16T02:10:33.145100Z

Yasnippets

2☝️
bozhidar 2021-04-16T07:58:45.145300Z

Linus what exactly stopped working in Projectile? There were definitely no material changes to the core functionality in a very long time. (I’m Projectile’s author)

bozhidar 2021-04-16T07:59:22.145500Z

For the record - these days I’m a selectrum user myself, having used before this ido and ivy.

bozhidar 2021-04-16T08:00:53.145700Z

I did remove ido as the default for Projectile which may have surprised a few people, as now if you don’t have any minibuffer completion package enabled you’ll have to press tab for the completion candidates.

bozhidar 2021-04-16T08:01:59.145900Z

See https://docs.projectile.mx/projectile/configuration.html#completion-options for more details.

1🙏
escherize 2021-04-16T15:56:02.146900Z

@nathantech2005 I have a few abominations like this:

(defun fib! ()
      (interactive)
      (insert
       "(take 20 (map first (iterate (fn [[a b]] [b (+ a b)]) [0 1])))"))

escherize 2021-04-16T15:56:24.147300Z

then, M-x fib! inserts that text.

vemv 2021-04-16T16:05:39.147900Z

haha, how come that you have a snippet just for fibonacci? it's not a very usual need

ericdallo 2021-04-16T16:11:17.148100Z

If you use clojure-lsp, check latest release: https://clojure-lsp.github.io/clojure-lsp/features/#snippets

hipster coder 2021-04-16T20:07:09.148400Z

I will try both... LSP looks awesome. Snippets and more.

1🚀
hipster coder 2021-04-16T20:20:24.148700Z

hmm... maybe he does a lot of interviews. And shows them that. Emacs users should go to the top of the pile :)

1😆