When using Solve for example, I find myself having to use it in conjunction with other types of functions, like Flatten or Simplify, like:
Flatten[Simplify[Solve[x^2 + 3 x == 2, x]]]
Since I am a complete beginner in building macros in Mathematica, I was trying to see if it were possible to create a macro, where you would type say fss, and it automatically converts it into Flatten[Simplify[Solve[]]], where if possible the cursor is placed right inside the Solve automatically.
I tried to do something like:
InputAutoReplacements -> {"fss" -> Flatten[Simplify[Solve[]]]};
Unfortunately, this did not work...
fss[e_,v_]:=Flatten@Siimplify@Solve[e,v];– Somos Feb 20 '19 at 16:13