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