Skip to content

Super fast way to grab recently yanked items and paste them

Notifications You must be signed in to change notification settings

bartdorsey/quickclip.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 

Repository files navigation

QuickClip for Neovim

The goal of QuickClip is to provide a really simple interface that shows you the last 10 items you have yanked, and lets you quickly pick one by number to paste back into your buffer.

quickclip

Goals

  • Automatically keep a rolling list of the last 10 yanked lines
  • Provide window of the last 10 items where you can press a number and have it immediately paste
  • Ignore duplicate yanks
  • Ignore empty lines

Installation

Install using your favorite plugin manager

'bartdorsey/quickclip.nvim'

Call the setup function

require('quickclip').setup()

The main command to trigger the window is QuickClip

vim.set.keymap(
    "n",
    "<leader>p",
    "<cmd>QuickClip<cr>",
    { desc = "Open QuickClip" }
)

You can press q or ESC to close the window, or press the number that appears to paste that item.

About

Super fast way to grab recently yanked items and paste them

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages