From 49ecf259fd667ed517e67fe6bd8964b0406819f8 Mon Sep 17 00:00:00 2001 From: justbruce <123607515+justbruce@users.noreply.github.com> Date: Tue, 14 Feb 2023 00:25:30 -0600 Subject: [PATCH] Add underscore to puncutation list There was previously no way to access the underscore - it is a necessary character for entering URLs, amongst other things Added right behind the dash, though where it exists doesnt matter so much as THAT it exists as a choice --- src/io/github/sspanak/tt9/languages/Punctuation.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/io/github/sspanak/tt9/languages/Punctuation.java b/src/io/github/sspanak/tt9/languages/Punctuation.java index 74085721..666dcb09 100644 --- a/src/io/github/sspanak/tt9/languages/Punctuation.java +++ b/src/io/github/sspanak/tt9/languages/Punctuation.java @@ -8,7 +8,7 @@ import java.util.Arrays; public class Punctuation { final public static ArrayList Main = new ArrayList<>(Arrays.asList( - ",", ".", "-", "(", ")", "[", "]", "&", "~", "`", "'", ";", ":", "\"", "!", "?" + ",", ".", "-", "_", "(", ")", "[", "]", "&", "~", "`", "'", ";", ":", "\"", "!", "?" )); final public static ArrayList Secondary = new ArrayList<>(Arrays.asList(