It's possible, but not exactly for the "Solidworks" versions - namely CTRL+1, CTRL+2 aren't available.
I use mapkeys: F5 for FRONT view, F6 for TOP and F7 for RIGHT view...
mapkey $F5 @MAPKEY_LABELFront View (F5);\
~ Command `ProCmdNamedViewsGalSelect` `FRONT`;
mapkey $F6 @MAPKEY_LABELTop View (F6);\
~ Command `ProCmdNamedViewsGalSelect` `TOP`;
mapkey $F7 @MAPKEY_LABELRight View (F7);\
~ Command `ProCmdNamedViewsGalSelect` `RIGHT`;
Now, all this requires that your model already contains the views called "FRONT", "TOP", etc...
What if you are dealing with a model that does not have such named views defined? Well, use this mapkey (F8) to quickly generate them:
mapkey $F8 @MAPKEY_NAMESave 6 named views (current view will become FRONT);\
@MAPKEY_LABELCreate Orthographic Views (F8);\
~ Command `ProCmdViewOrient` ;\
~ Activate `orient` `NmViewCheckBtn` 1;\
~ Activate `orient` `orient`;\
~ Input `orient` `namedviewPH.NameVw_IP` `front`;\
~ Update `orient` `namedviewPH.NameVw_IP` `front`;\
~ Activate `orient` `namedviewPH.NameVw_PB_Save`;Yes;\
~ Open `orient` `SetupOptions`;~ Close `orient` `SetupOptions`;\
~ Select `orient` `SetupOptions` 1 `dynorient`;\
~ Update `orient` `spinPH.YSpinBox` -90.000000;\
~ Activate `orient` `spinPH.YSpinBox` -90.000000;\
~ Activate `orient` `orient`;\
~ Input `orient` `namedviewPH.NameVw_IP` `right`;\
~ Update `orient` `namedviewPH.NameVw_IP` `right`;\
~ Activate `orient` `namedviewPH.NameVw_PB_Save`;Yes;\
~ Update `orient` `spinPH.YSpinBox` 90.000000;\
~ Activate `orient` `spinPH.YSpinBox` 90.000000;~ Activate `orient` `orient`;\
~ Input `orient` `namedviewPH.NameVw_IP` `left`;\
~ Update `orient` `namedviewPH.NameVw_IP` `left`;\
~ Activate `orient` `namedviewPH.NameVw_PB_Save`;Yes;\
~ Activate `orient` `orient`;~ Update `orient` `spinPH.YSpinBox` 180.000000;\
~ Activate `orient` `spinPH.YSpinBox` 180.000000;\
~ Input `orient` `namedviewPH.NameVw_IP` `back`;\
~ Update `orient` `namedviewPH.NameVw_IP` `back`;\
~ Activate `orient` `namedviewPH.NameVw_PB_Save`;Yes;\
~ Update `orient` `spinPH.YSpinBox` 0.000000;\
~ Activate `orient` `spinPH.YSpinBox` 0.000000;\
~ Update `orient` `spinPH.XSpinBox` 90.000000;\
~ Activate `orient` `spinPH.XSpinBox` 90.000000;~ Activate `orient` `orient`;\
~ Input `orient` `namedviewPH.NameVw_IP` `top`;\
~ Update `orient` `namedviewPH.NameVw_IP` `top`;\
~ Activate `orient` `namedviewPH.NameVw_PB_Save`;Yes;\
~ Update `orient` `spinPH.XSpinBox` -90.000000;\
~ Activate `orient` `spinPH.XSpinBox` -90.000000;\
~ Activate `orient` `orient`;\
~ Input `orient` `namedviewPH.NameVw_IP` `bottom`;\
~ Update `orient` `namedviewPH.NameVw_IP` `bottom`;\
~ Activate `orient` `namedviewPH.NameVw_PB_Save`;Yes;~ Activate `orient` `OkPB`;