# vscode-InsertNumbers **Repository Path**: AbstractFactory/vscode-InsertNumbers ## Basic Information - **Project Name**: vscode-InsertNumbers - **Description**: Insert Numbers extension for vscode - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-03-16 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # README ## Insert Numbers for Visual Studio Code An extension to insert increasing numbers. ![default behavior](images/default.gif) ## Usage * Command: `Insert Numbers` * Keybindings: `ctrl+alt+n` on Windows and Linux or `cmd+alt+n` on OSX ## Control format The format of the inserted numbers is controlled by a C-Style format string using in a sprintf function. There are two ways to change the default format string. * You can change your `settings.json` file to modify the default value: ![settings](images/settings.png) * You can input format string in the `InputBox` each time you toggle insert. The format string can be a single string like `%02d`: ![dec format](images/dec.gif) or with start number and step, like `%08X:0:4`: ![input format](images/hex.gif) ### Note * Do not input more than one type specifier in a format string. If you want to input more than one number, you can do it another time. * Do not input `':'` in format string. ## Thanks * [sprintf.js](https://github.com/alexei/sprintf.js) ## For more information or bug reports * [GitHub](https://github.com/Inori/vscode-InsertNumbers/) ## Changes * Version 0.9.0: April 29, 2016 First version *Enjoy!*