notepad++ - AHK clipboard without trimming space and tabs -
i need change 3 small sets of html code lines in multiple webpages want try use ahk me, paste code single keystroke, however, don't code pasted well. when use 'clipboard' trims tabs , when don't use clipboard doubles tabs
f1:: clipboard = <tr class="pure-table-odd"> <td><label>postcode<br><p class="kleiner"></p></td>
however, when past this, tabs , spaces trimmed
when use
f1:: <tr class="pure-table-odd"> <td><label>postcode<br><p class="kleiner"></p></td>
anyone idea how handle this?
you need use continuation section join`r`n
, use autotrim won't enough , still need escape first tab backtick. full code be:
autotrim, off clipboard = ` (join`r`n <tr class="pure-table-odd"> <td><label>postcode<br><p class="kleiner"></p></td> )
Comments
Post a Comment