Hello,
As I'm sure almost everyone here knows, the semicolon can be used to suppress automatic output from an input cell. An example is shown below.
In[1] number = 5 + 5
Out[1] 10
vs
In[2] number = 5 + 5;
Out[2]
Now buried somewhere in Mathematica's system files I'm assuming there's a file that says something along the lines of "When evaluating an input cell, if ";" is present, Output -> False"
Is anyone able to tell me what the PATH to that file is? Or suggest the most probable PATH to that file? I'm using Mathematica 12.2.0 on MacOS Catalina.
The reason I ask is because I currently have the semicolon set up to do something much more important than suppressing output, but I'd still like to be able to suppress output as it is quite useful, so I'd like to find the PATH to the file where the output suppression keybinding is defined.