Hi,
I’m trying to create a custom command to be accessible through the command palette in Sublime Merge.
I’m doing this by editing A .sublime-commands file in my user folder.
[
{
"caption": "Git command",
"command": "git",
"args": {"argv": ["status"]}
}
]
How do I make such a command accept an aditional variable input from the palette? Like a “-s” that the user enter in the palette in adition to the above command. So that the called command would be git status -s.
Thanks
´