You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently import and import( both use imp. Same with var. This is a bit annoying as these are used often and result in a prompt to pick the desired one.
I propose:
var = var N
var( = var ( N )
Or maybe:
va = var N
var = var ( N )
mnemonic: var results in a longer definition than va.
Same pattern for import.
Really the key for var ( N ) should support a list of vars as this is the common use case.
Interested? Thoughts? I can submit a PR.
The text was updated successfully, but these errors were encountered:
Currently
import
andimport(
both useimp
. Same withvar
. This is a bit annoying as these are used often and result in a prompt to pick the desired one.I propose:
var
=var N
var(
=var ( N )
Or maybe:
va
=var N
var
=var ( N )
mnemonic:
var
results in a longer definition thanva
.Same pattern for import.
Really the key for
var ( N )
should support a list of vars as this is the common use case.Interested? Thoughts? I can submit a PR.
The text was updated successfully, but these errors were encountered: