Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>nudgeNew to Visual Studio Code? Get it now.
nudge

nudge

robstenson

|
377 installs
| (0) | Free
nudge numbers and save, i.e. in-/de-crement and save to disk immediately
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Experimental VSCode extension for quickly incrementing numeric values and immediately saving the source-file (in situations where a sourcefile is being monitored for changes).

    {
        "key": "alt+down",
        "command": "nudge.incrementSelection",
        "when": "editorTextFocus",
        "args": {
            "increment": -10
        }
    },
    {
        "key": "alt+up",
        "command": "nudge.incrementSelection",
        "when": "editorTextFocus",
        "args": {
            "increment": 10
        }
    },
    {
        "key": "cmd+alt+down",
        "command": "nudge.incrementSelection",
        "when": "editorTextFocus",
        "args": {
            "increment": -1
        }
    },
    {
        "key": "cmd+alt+up",
        "command": "nudge.incrementSelection",
        "when": "editorTextFocus",
        "args": {
            "increment": 1
        }
    },
    {
        "key": "shift+alt+down",
        "command": "nudge.incrementSelection",
        "when": "editorTextFocus",
        "args": {
            "increment": -100
        }
    },
    {
        "key": "shift+alt+up",
        "command": "nudge.incrementSelection",
        "when": "editorTextFocus",
        "args": {
            "increment": 100
        }
    },

Development

npm install
npm run compile

F5 to run

https://code.visualstudio.com/api/working-with-extensions/publishing-extension

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft