Hi,
I want to create a simple macro to use in a faster way the command "fill columns". The goal of this macro is to insert the copied text in the selected column.
For now, i wrote this :
Then i select the text i want to paste in my columns, i select my columns and i launch the macro.
But, the columns are filled with "^c" instead of my original copied text.
I'm sure i'm miss something but i cannot see what?
Thanks for your help.
I want to create a simple macro to use in a faster way the command "fill columns". The goal of this macro is to insert the copied text in the selected column.
For now, i wrote this :
Code: Select all
InsertMode
ColumnModeOn
HexOff
ColumnInsert "^c"
But, the columns are filled with "^c" instead of my original copied text.
I'm sure i'm miss something but i cannot see what?
Thanks for your help.