10 lines
146 B
Plaintext
10 lines
146 B
Plaintext
4# -*- mode: snippet -*-
|
|
# name: wrapquotes
|
|
# binding: C-I w q
|
|
# --
|
|
`(if (region-active-p)
|
|
(concat
|
|
"«"
|
|
yas-selected-text
|
|
"»")
|
|
)` |