Sublime Forum

Support of 'exec' commands in sublime-commands

#1

Hi all

I may be mistaken but it seems like Sublime Merge doesn’t load ‘exec’ commands
All the ‘git’ commands in my Default.sublime-commands are loaded but not the ‘exec’ ones
Am I wrong, or do you plan on supporting this?

Example that doesn’t work

{
    "caption": "Build pp",
    "command": "exec",
    "args": {
        "shell_cmd": "touch /home/jd/ex.txt"
    }
},
0 Likes

#2

Currently there’s not any plugin support in Merge, so anything that’s implemented as a Python plugin in Text isn’t available in Merge. That includes some editing commands like the wrapping functionality as well as the exec command.

The road map includes support for plugins at some point in the future, at which point the exec command would probably become available (or could be implemented if not).

0 Likes

#3

Ok I see, thanks

0 Likes