dotfiles/.doom.d/snippets/clojurescript-mode/map

10 lines
286 B
Plaintext
Raw Normal View History

2022-03-09 01:05:14 -06:00
# -*- mode: snippet -*-
# name: map
# key: map
# --
{${1:$$(when (and yas-modified-p yas-moving-away-p)
(->> yas-text
(s-split " ")
(-map (lambda (key) (format ":%s %s" key key)))
(s-join " ")))}}