8000 GitHub - AgusDOLARD/backout.nvim: Jump back and forth while being in insert mode
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

AgusDOLARD/backout.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 

Repository files navigation

backout.nvim

📖 Overview

backout.nvim is a minimal neovim plugin designed to move inline while remaining in insert mode. This plugin is inspired by functionality from auto-pairs that I couldn't find in other auto-pair plugins.

Example

Example

🚀 Installation

return {
	"AgusDOLARD/backout.nvim",
	opts = {},
	keys = {
        -- Define your keybinds
		{ "<M-b>", "<cmd>lua require('backout').back()<cr>", mode = { "i", "c" } },
		{ "<M-n>", "<cmd>lua require('backout').out()<cr>", mode = { "i", "c" } },
	},
}

⚙️ Options

chars

A string containing characters or sequences to jump between

    chars = "(){}[]`'\"<>" -- default chars

multiLine

Enable/Disable multi line movement

    multiLine = true -- enabled by default

logLevel

Log levels to show in console

    logLevel = "error" -- "trace"|"debug"|"info"|"error"|"fatal"

🤝 Contributions

Contributions are welcome! Feel free to open issues, submit pull requests, or provide feedback to help improve backout.nvim.

About

Jump back and forth while being in insert mode

Topics

Resources

License

Stars

Watchers

Forks

Languages

0