All Projects → rhysd → Vim Operator Surround

rhysd / Vim Operator Surround

Vim operator mapping to enclose text objects with surrounds like paren, quote and so on.

Projects that are alternatives of or similar to Vim Operator Surround

Wandbox Vim
Wandbox plugin for vimmers. http://melpon.org/wandbox/
Stars: ✭ 97 (-21.77%)
Mutual labels:  vim-plugin
Neovim Fuzzy
Fuzzy file finding for neovim
Stars: ✭ 103 (-16.94%)
Mutual labels:  vim-plugin
Incsearch Fuzzy.vim
Stars: ✭ 116 (-6.45%)
Mutual labels:  vim-plugin
Vim Js
💯The most accurate syntax highlighting plugin for JavaScript and Flow.js
Stars: ✭ 99 (-20.16%)
Mutual labels:  vim-plugin
Ncm R
R autocompletion for Neovim and vim 8 📝 📊 ⚡️
Stars: ✭ 102 (-17.74%)
Mutual labels:  vim-plugin
Aws Operator
Manages Kubernetes clusters running on AWS
Stars: ✭ 110 (-11.29%)
Mutual labels:  operator
Inline edit.vim
Edit code that's embedded within other code
Stars: ✭ 94 (-24.19%)
Mutual labels:  vim-plugin
Gontroller
Go library to create resilient feedback loop/control controllers.
Stars: ✭ 121 (-2.42%)
Mutual labels:  operator
Splitjoin.vim
Switch between single-line and multiline forms of code
Stars: ✭ 1,383 (+1015.32%)
Mutual labels:  vim-plugin
Nvim Treesitter Context
Show code context
Stars: ✭ 113 (-8.87%)
Mutual labels:  vim-plugin
Thumbnail.vim
A thumbnail-style buffer selector for Vim
Stars: ✭ 99 (-20.16%)
Mutual labels:  vim-plugin
Vim Marked
Open the current Markdown buffer in Marked.app
Stars: ✭ 101 (-18.55%)
Mutual labels:  vim-plugin
Vim Trex
Running T-Rex with Vim
Stars: ✭ 111 (-10.48%)
Mutual labels:  vim-plugin
Vimpanel
A modern side panel for Vim
Stars: ✭ 97 (-21.77%)
Mutual labels:  vim-plugin
Vim Youdao Translater
vim的有道取词翻译插件
Stars: ✭ 116 (-6.45%)
Mutual labels:  vim-plugin
Vim Table Mode
VIM Table Mode for instant table creation.
Stars: ✭ 1,341 (+981.45%)
Mutual labels:  vim-plugin
Vim Ros
Vim plugin for ROS development
Stars: ✭ 106 (-14.52%)
Mutual labels:  vim-plugin
Vim Gdscript3
Syntax highlighting and completion for GDScript 3
Stars: ✭ 121 (-2.42%)
Mutual labels:  vim-plugin
Etcd Operator
etcd operator creates/configures/manages etcd clusters atop Kubernetes
Stars: ✭ 1,579 (+1173.39%)
Mutual labels:  operator
Sqhell.vim
An SQL wrapper for vim
Stars: ✭ 113 (-8.87%)
Mutual labels:  vim-plugin

Operator to Surround a Text Object

Build Status

This plugin provides Vim operator mappings to deal with surrounds like (), "" and so on. In addition, both end of the text object are the same character, vim-operator-surround recognizes them as a surround (this behavior is customizable with some variables).

It can

  • surround a text object with a specified block.
  • replace a surround in a text object with a specified block.
  • delete a surround in a text object.

This plugin would be more useful with vim-textobj-between or vim-textobj-anyblock. And you can customize and add surround definitions in global and filetype specific scope.

Policy of This Plugin (or The Reason Why I Don't Use vim-surround)

Requirements

This plugin uses vim-operator-user. Please install it in advance.

Customize

Set your favorite blocks to g:operator#surround#blocks. And control the behavior with some variables. Please read doc for more details.

Example of vimrc

" operator mappings
map <silent>sa <Plug>(operator-surround-append)
map <silent>sd <Plug>(operator-surround-delete)
map <silent>sr <Plug>(operator-surround-replace)


" delete or replace most inner surround

" if you use vim-textobj-multiblock
nmap <silent>sdd <Plug>(operator-surround-delete)<Plug>(textobj-multiblock-a)
nmap <silent>srr <Plug>(operator-surround-replace)<Plug>(textobj-multiblock-a)

" if you use vim-textobj-anyblock
nmap <silent>sdd <Plug>(operator-surround-delete)<Plug>(textobj-anyblock-a)
nmap <silent>srr <Plug>(operator-surround-replace)<Plug>(textobj-anyblock-a)

" if you use vim-textobj-between
nmap <silent>sdb <Plug>(operator-surround-delete)<Plug>(textobj-between-a)
nmap <silent>srb <Plug>(operator-surround-replace)<Plug>(textobj-between-a)

License

vim-operator-surround is distributed under MIT license.

Copyright (c) 2013-2017 rhysd

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].