Since the Replit based on WebView on Repl project, most important is dragging folders and files on mobile, I can’t drag the folders and files, it still stay that and it can’t dragging
Interesting issue. A user had this issue awhile back but was assured that the feature already exists.
Describe your feature request
Mobile file dragging. And also add mobile multiple select.
What problem(s) would this feature solve?
It’s a hassle to keep on using the mv command, especially when you’re moving multiple files.
Explain what you were trying to do when you came across the problem leading to this feature request
I was trying to move 6 files into a folder. As I don’t have a working computer, I couldn’t do anything about it except do it one by one using the mv command.
You could use the solution presented by Umar as a worst-case scenario:
you usually don’t have to do it one by one. Use globs to match multiple files
mv *.py foo # all .py files
mv *.{c,h} foo # .c and .h files
3 Likes