Skip to content

General

General

Categories

  • Hot ideas
  • Top ideas
  • New ideas
  • My feedback

107 results found

  1. Please add gitlab and other git public services support.

    198 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    planned  ·  7 comments  ·  Other  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  2. I want to connect to IDX from something other than the browser. Ideally, this could be my local VSCode instance or it could be over SSH from a terminal running neovim. I would like the power of a cloud workstation from my favorite environments.

    94 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    2 comments  ·  Other  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  3. Add support for bitbucket.
    This is fairly similar to add gitlab support:
    https://idx.uservoice.com/forums/953956-general/suggestions/46962415-add-gitlab-support

    Covering both gitlab & bitbucket covers the top 3 git hosting sites.
    A blocker before I try this for a personal project

    32 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    under review  ·  4 comments  ·  Other  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  4. If you're working on a Flutter plugin, which. includes native code (eg Kotlin, Swift) then those files are accurately labeled in the navigator on the left, but syntax highlighting for those languages appears not to work

    26 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    planned  ·  1 comment  ·  Other  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  5. Please can you add support for php and laravel.
    We know it is old but it still powers majority of the internet

    23 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    2 comments  ·  Other  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  6. Think with me...
    I'm a fullstack dev, that uses Flutter to client-side and Node.js to the server-side.
    That's why I downloaded at my personal linux computer, the following CLIs: node, npm and flutter.
    But, when I started to try to use idx, I found an obstacle!
    The terminal doesn't allow me to use neither apt nor snap, to download flutter SDK to my workspace(that was created by a GitHub repo).
    So, I created another workspace, selecting "Flutter" this time.
    And now, I can't use node, because APT is not allowed!
    Neither sudo exists!

    (My terminal is bash)
    user@monospace-getz-1702146325587:~/myapp$ npm
    bash:…

    20 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    under review  ·  2 comments  ·  Other  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  7. Deploying an iOS app to the app store currently requires Xcode to build the IPA file and then the macOS transporter app to drop the IPA file into App Store Connect. It would be great to give developers the ability to publish an iOS app (built with Flutter or another framework) to App Store without needing to drop down to local apps on a mac machine.

    20 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    under review  ·  2 comments  ·  Other  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  8. We want to make identifying (and fixing!) issues in code as natural as it can be, fully from inside your browser without any additional configuration.

    20 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    1 comment  ·  Other  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  9. We need a way to clone a Cloud Source Repository?

    Right now, when we try to paste a path using the http or SSH protocol, we get "Invalid repo URL format".

    19 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    2 comments  ·  Other  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  10. more android and apple devices, also add hot reload to iOS. And maybe for a future add desktops emulators (MacOS, Windows, Linux)

    14 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    0 comments  ·  Other  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  11. Hey Project IDX team,

    I don't want to have a limit of 2 workspaces in project IDX. Can you lift the limit of two workspaces to maybe 50-100? I want to draft a lot of flutter, angular, and react projects in project IDX. Thanks.

    • Dino
    13 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    4 comments  ·  Other  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  12. IDX should support running Docker containers within the Docker container provided for the runtime, preferably by reusing the host's Docker daemon:

    $ docker run -ti --rm -v /var/run/docker.sock:/var/run/docker.sock hello-world
    docker: permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Post "http://%2Fvar%2Frun%2Fdocker.sock/v1.24/containers/create": dial unix /var/run/docker.sock: connect: permission denied.
    
    $ sudo docker run -ti --rm -v /var/run/docker.sock:/var/run/docker.sock hello-world
    docker: Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?.
    See 'docker run --help'.
    

    versus on Codespaces:

    $ docker run -ti --rm -v /var/run/docker.sock:/var/run/docker.sock hello-world
    
    Hello from Docker!
    This message shows that your installation appears to
    12 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    0 comments  ·  Other  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  13. Make a feature or improvement where we can preserve the IDE configurations like themes and other configurations.
    Once we log out from the IDE after 1 or 2 days, the theme resets, all the default configurations are reverted, and all the extensions are removed.

    10 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    under review  ·  1 comment  ·  Other  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  14. Hi guys, I really like the general idea of the project, but I really think you need to give ir another feel, it cant´t be just like VS Code, you guys need to come up with google 's own look at least

    7 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    1 comment  ·  Other  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  15. Would love to open a bug report but I'm not allowed to do so, for the same reason for which I probably can't log in Project IDX.

    7 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    4 comments  ·  Other  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  16. Allow specifying custom git server and ssh key.

    7 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    0 comments  ·  Other  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  17. I tried to download a folder from my workspace, but it anly allows me to download files.

    So, I .tar the folder using the Terminal to generate a File .tar with the folder inside, and then dowload the .tar to my computer
    I see value in this feature :)

    Thanks!

    5 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    1 comment  ·  Other  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  18. Dear Admin,

    I already try Project IDX and I feel like this feature is very useful. But, I feel that the workspace limitation is measly. I hope you can increase the limitation from 2 to 5 maybe. It will helpful that you will consider my feedback.

    Thank you.

    5 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    0 comments  ·  Other  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  19. 5 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    0 comments  ·  Other  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  20. 5 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    0 comments  ·  Other  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
← Previous 1 3 4 5 6
  • Don't see your idea?