-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Auto Import and Run Configuration Dot File #98
Comments
Hi! Thanks for opening your first issue here! 😄 |
That looks reasonable! For simplicity, the first version may be as simple as prelude: |-
!dart pub add sheller
import 'dart:io'; import 'package:sheller/sync.dart'; And the implementation is as simple as "execute line-by-line as-is". Only a nit: To make it consistent with flutter ecosystem, maybe it is named Feel free to PR for this! I may not have enough time to implement this recently, but is happy to review/merge PRs. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Not sure why this was closed |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Bing bong |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Bong bing |
Hello fzyzcjy 👋
Is your feature request related to a problem? Please describe.
Almost always when I open a repl I will reach for two packages:
import 'dart:io';
import 'package:sheller/sync.dart';
(https://pub.dev/packages/sheller)This becomes tedious
Describe the solution you'd like
It would a huge time saver if dart_interactive read from a dot file, maybe even a
configuration.toml
, where I can specify packages to include (e.g.sheller: ^0.5.6
) and commands to runimport 'dart:io'; import 'package:sheller/sync.dart';
at the start of each repl session.The text was updated successfully, but these errors were encountered: