8000 GitHub - srcrip/before.nvim: Plugin for Neovim which tracks edit locations
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

srcrip/before.nvim

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 

Repository files navigation

before.nvim

Purpose

Track edit locations and jump back to them, like changelist, but across buffers.

peeked

Installation

lazy.nvim

{
  'bloznelis/before.nvim',
  config = function()
    local before = require('before')
    before.setup()

    vim.keymap.set('n', '<C-h>', before.jump_to_last_edit, {})
    vim.keymap.set('n', '<C-l>', before.jump_to_next_edit, {})
  end
}

Configuration

require('before').setup({
  -- How many edit locations to store in memory (default: 10)
  history_size = 42
})

About

Plugin for Neovim which tracks edit locations

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Lua 100.0%
0