我想将网页或vim窗口中的一系列行粘贴到另一个vim窗口中,我使用鼠标复制和粘贴原始内容是:
// Calculate the sum //
sum = 0;
while (len > 1)
{
sum += *buf++;
if (sum & 0x80000000)
sum = (sum & 0xFFFF) + (sum >> 16);
len -= 2;
}
if ( len & 1 )
// Add the padding if the packet lenght is odd //
sum += *((uint8_t *)buf);
将它们粘贴到另一个 vim 后,这些行变为:
// Calculate the sum //
// sum = 0;
// while (len > 1)
// {
// sum += *buf++;
// if (sum & 0x80000000)
// sum = (sum & 0xFFFF) + (sum >> 16);
// len -= 2;
// }
//
// if ( len & 1 )
// // Add the padding if the packet lenght is odd //
// sum += *((uint8_t *)buf);
//
// // Add the pseudo-header
为什么会这样?以及如何按预期进行粘贴?谢谢!