Git Product home page Git Product logo

surround.nvim's Introduction

surround.nvim

Warning this is a beta and my first plugin. I won't be responsible for broken codes because the parser failed or something. You are encouraged to test this and report bugs and feature requests.

Features

Key mappings

There are two keymap modes for normal mode mappings.

  • sandwich and surround and they can be set using the options mentioned below.

Normal Mode - Sandwich Mode

  1. Provides key mapping to add surrounding characters.( visually select then press s<char> )
  2. Provides key mapping to replace surrounding characters.( sr<from><to> )
  3. Provides key mapping to delete surrounding characters.( sd<char> )
  4. ss repeats last surround command.

Normal Mode - Surround Mode

  1. Provides key mapping to add surrounding characters.( visually select then press s<char> )
  2. Provides key mapping to replace surrounding characters.( cs<from><to> )
  3. Provides key mapping to delete surrounding characters.( ds<char> )

Insert Mode

  • <c-s><char> will insert both pairs in insert mode.
  • <c-s><char><space> will insert both pairs in insert mode with surrounding whitespace.
  • <c-s><char><c-s> will insert both pairs on newlines insert mode.

IDK I was bored

  1. Cycle surrounding quotes type. (stq)
  2. Cycle surrounding brackets type. (stb)
  3. Use <char> == f for adding, replacing, deleting functions.

Installation

  1. vim-plug: Plug 'blackcauldron7/surround.nvim'
  2. minPlug: MinPlug blackcauldron7/surround.nvim
  • Put this somewhere in your init.vim: lua require"surround".setup{}

Configuration

Format: for vimscript let g:surround_<option> and for lua vim.g.surround_<option>

  • pairs: dictionary or lua table of form { nestable: {{},...}, linear: {{},....} } where linear is an array of arrays which contain non nestable pairs of surrounding characters first opening and second closing like ", ' and nestable is an array of arrays which contain nestable pairs of surrounding characters like (, {, [. (default: { nestable = { {"(", ")"}, {"[", "]"}, {"{", "}"} }, linear = { {"'", "'"}, {'"', '"'} } })
  • context_offset: number of lines to look for above and below the current line while searching for nestable pairs. (default: 100)
  • load__autogroups: whether to load inbuilt autogroups or not. (default: false)
  • mappings_style: "surround" or "sandwich" (default: sandwich)
  • load__keymaps: whether to load inbuilt keymaps or not. (default: true)
  • quotes: an array of items to be considered as quotes while cycling through them. (default: ["'", '"']
  • brackets: an array of items to be considered as brackets while cycling through them. (default: ["(", "{", "["]

Caveats

  1. Only supports neovim and always will because it's written in lua which is neovim exclusive.
  2. Doesn't support python docstrings and html tags yet.
  3. No vim docs(idk how to make them. Need help)
  4. Beta plugin not tested too much.(Help would be appreciated by testing and reporting bugs)
  5. No . repeat support(idk how to achieve this help would be appreciated.) (although there is a mapping ss only available in sandwich mode which repeats last surround command.)

Contributing

You are more than welcome to submit PR for a feature you would like to see or bug fixes.

surround.nvim's People

Stargazers

 avatar

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.