2025-09-08 20:34:20 +03:00

10 lines
135 B
Plaintext

# -*- mode: snippet -*-
# name: wrapcommas
# binding: C-I w ,
# --
`(if (region-active-p)
(concat
", "
yas-selected-text
",")
)`