Giter VIP home page Giter VIP logo

Comments (5)

bounceme avatar bounceme commented on May 29, 2024

all I can think of tonight, untested:

let g:Poppy = -1
nmap <leader>hp :let g:Poppy = -g:Poppy \| exe 'au! CursorMoved *' . (g:Poppy>0 ? ' call PoppyInit()' :  '')<cr>

you may need to make a augroup or function

from poppy.vim.

bounceme avatar bounceme commented on May 29, 2024

sorry, now above is working. you should use a augroup with that mapping to not remove other plugins autocmds

from poppy.vim.

anntzer avatar anntzer commented on May 29, 2024

The example you give is not working, because the | need to be replaced by <bar>. But your suggestion led me to

augroup Poppy | autocmd! CursorMoved | augroup END
nmap <silent> <leader>hp :let g:poppy = -g:poppy <bar> exe 'au! Poppy CursorMoved *' . (g:poppy > 0 ? ' call PoppyInit()' : '') <cr>

which is nearly working.

A minor remaining issue is that turning off poppy-mode in such a way does not clear the currently highlighted parentheses.

from poppy.vim.

bounceme avatar bounceme commented on May 29, 2024

just add a call to clearmatches() or filter the w:poppies variable, calling matchdelete()

from poppy.vim.

bounceme avatar bounceme commented on May 29, 2024
augroup Poppy | autocmd! CursorMoved | augroup END
nmap <silent> <leader>hp :call clearmatches() \| let g:poppy = -g:poppy \| exe 'au! Poppy CursorMoved *' . (g:poppy > 0 ? ' call PoppyInit()' : '') <cr>

from poppy.vim.

Related Issues (5)

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.