I'm trying to align text vertically with a delimiter in Geany text editor:
idxMathExpress (MathArcCos _) = 120
idxMathExpress (MathArcSin _) = 130
idxMathExpress (MathArcTan _) = 140
I would like this block to be aligned like this
idxMathExpress (MathArcCos _) = 120
idxMathExpress (MathArcSin _) = 130
idxMathExpress (MathArcTan _) = 140
I tried to pass the selected text to an external command :
column -t -s '='
to make the job.
But when I launch the command, I get the following message
column : line too long
and I don't understand why.
Do you what is the problem whith this command ?
Do you know another way to align text with a separator with geany (awk, sed ...) ?