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

Popular posts from this blog

ubuntu - PHP script to find files of certain extensions in a directory, returns populated array when run in browser, but empty array when run from terminal -

php - How can i create a user dashboard -

javascript - How to detect toggling of the fullscreen-toolbar in jQuery Mobile? -