Skip to content

Latest commit

 

History

History
50 lines (37 loc) · 1.71 KB

README.md

File metadata and controls

50 lines (37 loc) · 1.71 KB

Hex Multi-Converter

general usage screencast

GitHub Repository

Marketplace Page

Features

  • Multi-select support
  • Replace selected text or insert conversion as comments
  • Hex to decimal conversion
    • Replace
    • Comment
  • Hex to ASCII conversion
    • Replace
    • Comment
  • Hex to binary conversion
    • Replace
    • Comment
  • Decimal to hex conversion
    • Replace
    • Comment
  • ASCII to hex conversion
    • Replace
    • Comment
  • Binary to hex conversion
    • Replace
    • Comment

Usage

  1. Select the text you want to convert
  2. Open command palette (Shift + Command + P (Mac) / Ctrl + Shift + P (Windows/Linux))
  3. Search "convert" or "comment" and select conversion method

command palette

Extension Settings

This extension contributes the following settings:

  • hex-multi-converter.convertEscapeCharactersToText: (default true) Set to false to disable escape characters to text conversion (render newline instead of "\n" for example).
  • hex-multi-converter.convertControlCharactersToText: (default true) Set to false to disable control characters to text conversion (show the ESC symbol instead of "ESC" for example).
  • hex-multi-converter.extendedMatcher: (default false) Set to true to enable extended syntax for hexadecimal numbers. For example, when enabled 0x12345U and 0x12345u will be matched as hexadecimal numbers.