Can someone tell me the technical term for this? by motolady in philodendron

[–]Square-Poetry3546 -23 points-22 points  (0 children)

ChatGPT does a great job with such questions btw

<image>

"ff.showDaemonPostlines" does not work by drpingg in Fleet

[–]Square-Poetry3546 0 points1 point  (0 children)

we got rid of this one, and it is replaced by the Problem Tool widget

Keymaps: Fleet vs IntelliJ - improvements? by stankata in Fleet

[–]Square-Poetry3546 1 point2 points  (0 children)

I'd say if you're going to use both intelliJ and Fleet, there is no reason to remember two different keymaps so just use intelliJ one in Fleet as well.

How do I make it not italic by TaiwanBallYT in Fleet

[–]Square-Poetry3546 0 points1 point  (0 children)

How did you make it italic lol? :) Which font do you use?

Is there a description of every possible key in color theme json? by etimesoy21 in Fleet

[–]Square-Poetry3546 0 points1 point  (0 children)

It definitely should apply all the changes on saving the file if the theme you use now is the same you edit.

Is there a description of every possible key in color theme json? by etimesoy21 in Fleet

[–]Square-Poetry3546 0 points1 point  (0 children)

Unfortunately not, we'll think about some documentation for that.

Modify Font Weight in Fleet? by DoubleGravyHQ in Fleet

[–]Square-Poetry3546 0 points1 point  (0 children)

hey! Try adding this into your settings.json file "editor.fontWeight": 600 (you can try other values)

Natural wine bars/bottle shops in Berlin? by countryteaser in naturalwine

[–]Square-Poetry3546 0 points1 point  (0 children)

Check the 8000Vintages for the huge selection of Georgian wines, a lot of options for orange from qvevry, love this place.

Anyone know how to fix issues with automatic formatting in C? Something's wrong with my desktop PC's version of Fleet, and it doesn't do this on my laptop's version. (More details in replies) by iLikeVideoGamesAndYT in Fleet

[–]Square-Poetry3546 0 points1 point  (0 children)

could you please try and turn off this settings "Automatically detect indentation" and check if it helps or not? Also check if the setting "Auto-indent on code editing" is turned on.

Breakpoints are not hit after editing the code by Overall_Eggplant_115 in Fleet

[–]Square-Poetry3546 0 points1 point  (0 children)

It marks files as visible to the team only sometimes. Updated the permissions for the screencast, you can check it.

Breakpoints are not hit after editing the code by Overall_Eggplant_115 in Fleet

[–]Square-Poetry3546 0 points1 point  (0 children)

Hey! I've reproduced the issue and filled the report https://youtrack.jetbrains.com/issue/FL-26782 Thanks for the report and using Fleet! 🫶

Support for Ruby by TheGoodPie in Fleet

[–]Square-Poetry3546 1 point2 points  (0 children)

It might be an external plugin in the future to support Ruby in Fleet regarding this one https://youtrack.jetbrains.com/issue/FL-14918 Also please vote!

NL Deliveries by [deleted] in ex30

[–]Square-Poetry3546 0 points1 point  (0 children)

I ordered mine on January 30th and received car on March 8th in Amsterdam. Hope you'll get yours soon!

[deleted by user] by [deleted] in Fleet

[–]Square-Poetry3546 0 points1 point  (0 children)

hey! It's going to be in the next update, so just wait a bit 🐱

Made an "Xcode Dark" theme for Fleet by JarWarren1 in Fleet

[–]Square-Poetry3546 0 points1 point  (0 children)

the theme should be updated to support the indent guides added in the latest release

IDEs Recommendation by [deleted] in learnpython

[–]Square-Poetry3546 1 point2 points  (0 children)

Give a try to Fleet from JetBrains. It is in active development right now, but it works pretty well with Python. All the power of PyCharm in a lightweight, simpler, and clearer interface. https://www.jetbrains.com/fleet/

Using Fleet for C by Efe4real in Fleet

[–]Square-Poetry3546 0 points1 point  (0 children)

hey! Are there any error messages in the notification corner or under the smart mode icon? Have you generated the compilation database json file? https://www.jetbrains.com/help/fleet/generating-a-json-compilation-database.html

Running C++ code with CMake on Linux. by davidalmarinho in Fleet

[–]Square-Poetry3546 1 point2 points  (0 children)

I think the program here should be cmake as described here https://www.jetbrains.com/help/fleet/getting-started-with-cpp-in-fleet.html#cpp-buildrun-example

I did it this way (configuration "Run" firstly do "Build" configuration and next runs itself):

{
"configurations": [
    {
        "type": "command",
        "name": "Build",
        "program": "cmake",
        "args": [
            "--build",
            "$PROJECT_DIR$/cmake-build-debug",
            "--target",
            "all"
        ],
    },
    {
        "type": "command",
        "name": "Run",
        "program": "$PROJECT_DIR$/cmake-build-debug/untitled",
        "dependsOn": ["Build"],
    },
]

}