Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

a vscode extension

Resources

Stars

6 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages