Skip to content

Commit d4b5ca3

Browse files
committed
GUI - disable experimental arg completion
1 parent d933ea2 commit d4b5ca3

File tree

1 file changed

+26
-26
lines changed

1 file changed

+26
-26
lines changed

app/gui/qt/sonicpiapis.cpp

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -112,32 +112,32 @@ void SonicPiAPIs::updateAutoCompletionList(const QStringList &context,
112112
last == "mc_set_area") {
113113
ctx = MCBlock;
114114

115-
// FX params
116-
} else if (words.length() >= 2 &&
117-
(first == "with_fx" || first == "use_fx")) {
118-
if (last.endsWith(':')) return; // don't try to complete parameters
119-
if (fxArgs.contains(second)) {
120-
list = fxArgs[second];
121-
return;
122-
}
123-
124-
// Synth params
125-
} else if (words.length() >= 2 && first == "synth") {
126-
if (last.endsWith(':')) return; // don't try to complete parameters
127-
if (synthArgs.contains(second)) {
128-
list = synthArgs[second];
129-
return;
130-
}
131-
132-
// Play params
133-
} else if (words.length() >= 2 && first == "play") {
134-
if (last.endsWith(':')) return; // don't try to complete parameters
135-
ctx = PlayParam;
136-
137-
// Sample params
138-
} else if (words.length() >= 2 && first == "sample") {
139-
if (last.endsWith(':')) return; // don't try to complete parameters
140-
ctx = SampleParam;
115+
// // FX params
116+
// } else if (words.length() >= 2 &&
117+
// (first == "with_fx" || first == "use_fx")) {
118+
// if (last.endsWith(':')) return; // don't try to complete parameters
119+
// if (fxArgs.contains(second)) {
120+
// list = fxArgs[second];
121+
// return;
122+
// }
123+
124+
// // Synth params
125+
// } else if (words.length() >= 2 && first == "synth") {
126+
// if (last.endsWith(':')) return; // don't try to complete parameters
127+
// if (synthArgs.contains(second)) {
128+
// list = synthArgs[second];
129+
// return;
130+
// }
131+
132+
// // Play params
133+
// } else if (words.length() >= 2 && first == "play") {
134+
// if (last.endsWith(':')) return; // don't try to complete parameters
135+
// ctx = PlayParam;
136+
137+
// // Sample params
138+
// } else if (words.length() >= 2 && first == "sample") {
139+
// if (last.endsWith(':')) return; // don't try to complete parameters
140+
// ctx = SampleParam;
141141

142142
} else if (context.length() > 1) {
143143
if (partial.length() <= 2) {

0 commit comments

Comments
 (0)