Git Product home page Git Product logo

Comments (2)

tmsvg avatar tmsvg commented on May 17, 2024

The b:traverser variable is defined as soon as insert mode is first entered, so it's not clear to me how you would be getting this error, since OnInsertCharPre() should only be called after you enter insert mode. Maybe something in your config is preventing the InsertEnter autocmd from triggering (see :noautocmd or :eventignore).

This doesn't really sound like a Pear Tree bug to me, but you could try updating to the latest version and see if you still experience this issue.

from pear-tree.

char101 avatar char101 commented on May 17, 2024

I don't experience the error again after adding these lines. It doesn't always happens and probably happens after switching buffers so most likely a problem of concurrent execution.

diff --git a/autoload/pear_tree/insert_mode.vim b/autoload/pear_tree/insert_mode.vim
index 8a53e08..75a2ce2 100644
--- a/autoload/pear_tree/insert_mode.vim
+++ b/autoload/pear_tree/insert_mode.vim
@@ -36,6 +36,7 @@ endfunction


 function! s:CorrectTraverser() abort
+    call pear_tree#insert_mode#OnInsertEnter()
     if s:lost_track
         call b:traverser.Reset()
         let s:traverser_start_pos = b:traverser.TraverseBuffer([1, 0], [line('.'), col('.') - 1])
@@ -61,6 +62,7 @@ endfunction


 function! pear_tree#insert_mode#OnCursorMovedI() abort
+    call pear_tree#insert_mode#OnInsertEnter()
     let l:new_line = line('.')
     let l:new_col = col('.')
     if l:new_line != s:current_line || l:new_col < s:current_column

from pear-tree.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.