Skip to content

Visual Studio Code extension which helps escaping string when copy/pasting

License

Notifications You must be signed in to change notification settings

blackworm27/vscode-escape-string

 
 

Repository files navigation

Escape String - Visual Studio Code extension

Pasting strings into source code file can be challenging because special characters must be escaped. This Escape String VSCode extension helps you with that by adding Paste escaped string command.

Features

Paste escaped string is available by right clicking on a text editor for supported types of files:

  • C
  • C++
  • C#
  • JavaScript
  • Python
  • TypeScript

It will paste content of clipboard as a string, in format specific for given file/programming language, with special characters escaped.

In this animation you can see that "original" text (command line) is copied to clipboard and then pasted to a *.cs and *.js file. The pasted string is formatted as verbatim string in C# and as template literal in JavaScript:

Paste escaped string example

Known issues

For C++ strings are escaped using raw string literal. If original string contains default end-sequence ") then we'll try one of pre-defined delimiters. If the string contains all pre-defined end-sequences, we will use the original string. Example: )" )!" )@" )#" )$" )%" )^" )&" )*" )~" )`" )-" )_" )=" )+"

About

Visual Studio Code extension which helps escaping string when copy/pasting

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 100.0%