Giter Site home page Giter Site logo

Comments (6)

anuvyklack avatar anuvyklack commented on June 2, 2024 3

You can use keymap-amend plugin for this mapping:

keymap.amend('n', '<C-p>', function(original)
   if yanky.can_cycle() then                 
      yanky.cycle(-1)                        
   else                                      
      original()                             
   end                                       
end)                                         
                                             
keymap.amend('n', '<C-n>', function(original)
   if yanky.can_cycle() then                 
      yanky.cycle(1)                         
   else                                      
      original()                             
   end                                       
end)                                         

It plays well with vim-visual-muilti.

from yanky.nvim.

gbprod avatar gbprod commented on June 2, 2024 2

Thanks for feedbacks !

I've introduced require('yanky').can_cycle() method (more meaningful for me than is_in_ring)
I've also updated documentation ;)

I'll make more tests and I'll merge after

from yanky.nvim.

gbprod avatar gbprod commented on June 2, 2024

Interesting!
I think I can introduce an option to chose between "cursor moved" or "content changed" event (because I prefer "content changed event 😉)

I'll try to add this in the next few days!

from yanky.nvim.

gbprod avatar gbprod commented on June 2, 2024

Hi @aceforeverd !
I've made something here : #32
Do you want to try before I merge ?

from yanky.nvim.

aceforeverd avatar aceforeverd commented on June 2, 2024

I tested, it works as expected, appreciate it 🚀 !

Yet I have a few comments:

  • CursorMoved event expect to trigger if line content changed as well, maybe doced as well
  • Wondering if there should be a public interface like require('yanky').is_in_ring() to tell if is ringing, anyway require('yanky').ring.state ~= nil works well for me too

from yanky.nvim.

aceforeverd avatar aceforeverd commented on June 2, 2024

awesome :)

from yanky.nvim.

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.