<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/xhtml; charset=utf-8">
</head>
<body>
<div style="font-family:sans-serif"><div style="white-space:normal">
<p dir="auto">On 4 Mar 2019, at 11:39, Philippe Huibonhoa wrote:</p>

</div>
<div style="white-space:normal"><blockquote style="border-left:2px solid #777; color:#777; margin:0 0 5px; padding-left:5px"><p dir="auto">I have a command I'm trying to create that pastes multiple lines of code,<br>
the problem is sequential lines are not indented properly. […]<br>
Is there a recommended way to<br>
fix this?</p>
</blockquote></div>
<div style="white-space:normal">

<p dir="auto">In the bundle editor’s sidebar, set Format to Snippet (under Output).</p>

<p dir="auto">Snippet output is automatically indented to the current indent level.</p>

<p dir="auto">Be aware though that you should escape any special characters in the output that would otherwise trigger snippet functionality, in ruby that could be done with this function:</p>

<pre style="background-color:#F7F7F7; border-radius:5px 5px 5px 5px; margin-left:15px; margin-right:15px; max-width:90vw; overflow-x:auto; padding:5px" bgcolor="#F7F7F7"><code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0" bgcolor="#F7F7F7">def e_sn(str)
  str.gsub(/(?=[$`\\])/, '\\')
end
</code></pre>
</div>
</div>
</body>
</html>