13 lines
180 B
Plaintext
13 lines
180 B
Plaintext
# -*- mode: snippet -*-
|
|
# name: wrapfigure
|
|
# binding: C-I w e f
|
|
# --
|
|
`(if (region-active-p)
|
|
(concat
|
|
"
|
|
\\begin{figure}[H]
|
|
"
|
|
yas-selected-text
|
|
"\\end{figure}
|
|
")
|
|
)` |