Skip to content

slugbyte/whip.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WHIP.NVIM

biew biew biew, a super quick scratchpad manager

whip logo

INSTALL

SETUP

-- example lazy nvim config
return {
    "slugbyte/whip.nvim",
    dependencies = {
        "nvim-lua/plenary.nvim",
        "nvim-telescope/telescope.nvim",
    },
    config = function()
        local whip = require("whip")
        whip.setup({
            -- its probs a good idea to have a dir dedicated to your scratchpads
            dir = "~/your/whip/dir/goes-here"
        })
        vim.keymap.set("", "<leader>wo", whip.open, { desc = "[W]hip [O]pen" })
        vim.keymap.set("", "<leader>wm", whip.make, { desc = "[W]hip [M]ake" })
        vim.keymap.set("", "<leader>wd", whip.drop, { desc = "[W]hip [D]rop" })
        vim.keymap.set("", "<leader>wf", whip.find_file, { desc = "[W]hip [F]ile Search" })
        vim.keymap.set("", "<leader>wg", whip.find_grep, { desc = "[W]hip [G]rep Search" })
    end,
}

USAGE

whip.nvim allows you to quickly edit and manage files in the whip dir configured with setup(). A huge benefit of whip is that it always remeber's the last whip file you selected/created and will auto open to that file.

I use different scratchpads for different projects, and while I'm working on a particular project I tend to reference it's scratchpad over and over. I made this thing because I find it super nice to be able to quickly pop open the last scratchpad I used.

LUA API

  • whip.open() open last selected whip file, if no file is selected it will trigger whip.find_file()
  • whip.make() prompt to create a new whip file
  • whip.drop() delete a whip file from a telescope find and a confirm prompt
  • whip.find_file() telescope whip files
  • whip.find_grep() telescope grep whip files

COMMANDS

  • :WhipOpen calls whip.open()
  • :WhipMake calls whip.make()
  • :WhipDrop calls whip.drop()
  • :WhipFindFile calls whip.find_file()
  • :WhipFindGrep calls whip.find_grep()

CHECKHEALTH

Run :checkhealth whip to check for trouble with your configuration

NOTE

whip.nvim creates a .whip.json in your whip dir to keep track of your last selected file.

SELF-PROMO

If you like this project star the GitHub repository :)

About

biew biew biew, a super quick scratchpad manager

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages