Git Product home page Git Product logo

vscode-surround's Introduction

VSCode Surround

A vscode extension analogous to vim's pair motion

How it works?

We simultaneously search for the nearest substring pair (position relative to the cursor) that matches the specified start and end patterns respectively. The search process will not take AST into account. Currently, VS Code doesn't expose any AST information in its Extension API.

Default Patterns

The following selection patterns are provided out-of-the-box:

  • <>
  • {}
  • []
  • ''
  • ""
  • ()
  • `
  • ```

Custom Pattern

Custom selection patterns can be specified in Preferences. Match patterns are specified as Javascript regular expression strings. An example configuration is given below. Custom pattern 2 here formulates a typical Typescript function declaration. Usage with complex patterns should be avoided because such patterns are fragile.

{
  "vscode-surround.custom-patterns": {
    "1": {
      "startPattern": "\\(",
      "endPattern": "\\)"
    },
    "2": {
      "startPattern": "function \\w+\\([^\\n]*\\)(: \\w+)? {",
      "endPattern": "}"
    }
  }
}

TODO

  • Be able to change the brackets like vim-surround

vscode-surround's People

Contributors

samsze0 avatar

Watchers

 avatar

vscode-surround's Issues

Auto detect bracket type

Can you support this? It will match the closest bracket and select the text inside the bracket. Press again to activate the inclusive mode, press it again to select the second closest bracket.

So, I can only setup 1 hotkey.

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.