You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-11
Original file line number
Diff line number
Diff line change
@@ -97,22 +97,26 @@ Ok this can get a little bit complicated because there is a variety of operatin
97
97
To understand why all this may become an issue, we need to take a look at how communication between dragonfly and the plugin works.
98
98
99
99
100
-
Probably by far the most convenient way is via sublime comand line interface. This is the default method used. The script invokes the subl cli tool with a command like that:
100
+
Probably by far the most convenient way is via sublime comand line interface. This is the default method used. For example after a command of the form
101
101
102
-
```bash
103
-
subl --command python_voice_coding_plugin
104
-
{ "arg":
102
+
```python
103
+
"[smart] [<adjective>] argument <argument_index>"
104
+
```
105
+
like
106
+
107
+
```
108
+
"first argument 2"
109
+
```
105
110
106
-
{
107
-
111
+
The script invokes the subl cli tool with a command like that:
So effectively we trigger the command our plugin provides in its top file and pass information about the type of query we want and the parameters we used as a dict encoded as a json string.
0 commit comments