I have a specific request. First, I have a Python shell where I print a column of values :
>>> np.savetxt(sys.stdout, np.matrix(bias_new).T)
1.399821417181491778e+00
1.444645285182490690e+00
1.496495907111008439e+00
1.565247584249852775e+00
1.774823934929884883e+00
I have another file edited with vim
and I would like to be able to insert this above column of values directly in this file (after the second column of file). For the moment, I can copy in buffer this column by doing CMD+C and on the edited file, I can select a block with CTRL+V but I don't know how to insert directly the buffered column into vim edited file as a third column.
Maybe it is not possible on MacOS. But if it is, this would be nice to explain the way to do it.