On 8/31/06, Thomas <[EMAIL PROTECTED]> wrote:
Hi,

In a plugin on mine, I have the following lines:

             let col  = virtcol(".")
             let line = strpart(getline("."), col - 1)

This is wrong. You need:
            let col  = col(".")
            let line = strpart(getline("."), col - 1)

Yakov

Reply via email to