Skip to content

Commit f0114c0

Browse files
Added "Suggestion Font Size" setting
2 parents c1e7ba0 + 960bca9 commit f0114c0

File tree

11 files changed

+15
-73
lines changed

11 files changed

+15
-73
lines changed

.idea/.gitignore

Lines changed: 0 additions & 3 deletions
This file was deleted.

.idea/.name

Lines changed: 0 additions & 1 deletion
This file was deleted.

.idea/compiler.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.idea/deploymentTargetSelector.xml

Lines changed: 0 additions & 10 deletions
This file was deleted.

.idea/gradle.xml

Lines changed: 0 additions & 20 deletions
This file was deleted.

.idea/kotlinc.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.idea/migrations.xml

Lines changed: 0 additions & 10 deletions
This file was deleted.

.idea/vcs.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

app/src/main/java/com/coderGtm/yantra/commands/search/Command.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ class Command(terminal: Terminal) : BaseCommand(terminal) {
3333
return
3434
}
3535
val url = when (engine) {
36+
3637
"google" -> "https://www.google.com/search?q="
3738
"duckduckgo" -> "https://duckduckgo.com/?q="
3839
"brave" -> "https://search.brave.com/search?q="
@@ -43,6 +44,7 @@ class Command(terminal: Terminal) : BaseCommand(terminal) {
4344
"qwant" -> "https://www.qwant.com/?q="
4445
"you" -> "https://you.com/search?q="
4546
"playstore" -> "https://play.google.com/store/search?q="
47+
"maps" -> "https://www.google.com/maps?output=search&q="
4648
else -> {
4749
output(terminal.activity.getString(R.string.invalid_search_engine), terminal.theme.errorTextColor)
4850
return
@@ -105,4 +107,4 @@ class Command(terminal: Terminal) : BaseCommand(terminal) {
105107
}
106108
}
107109
}
108-
}
110+
}

app/src/main/res/values/strings.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -580,4 +580,5 @@
580580
<string name="terminal_text_color_reset">Terminal text color reset to theme.</string>
581581
<string name="terminal_text_color_set_to">Terminal text color set to #%1$s</string>
582582
<string name="no_sound_effects_found">No custom sound effects found!</string>
583+
<string name="edit_note">Edit Note (%1$s)</string>
583584
</resources>

0 commit comments

Comments
 (0)