Search found 179 matches

by ESP_kondalkolipaka
Mon Sep 23, 2024 11:51 am
Forum: IDEs for ESP-IDF
Topic: Espressif IDE tooltips not displaying correctly
Replies: 3
Views: 1913

Re: Espressif IDE tooltips not displaying correctly

Hello, Please check this. https://github.com/espressif/idf-eclipse-plugin/issues/1019#issuecomment-2225815025 The problem is because of the incompatability of 3.0.0 LSP editor with the IDF v4.4.8. which requires 5.0.0 and higher. You have two options to resolve this issue: 1. Upgrade to ESP-IDF 5.0....
by ESP_kondalkolipaka
Wed Sep 11, 2024 8:56 am
Forum: IDEs for ESP-IDF
Topic: Search option missing in right-click menu, and code editor format
Replies: 2
Views: 1696

Re: Search option missing in right-click menu, and code editor format

Hello, The “search text” option in the right-click menu is currently unavailable in the LSP-based C/C++ Editor. We will look into this. However, you can use the toolbar menu “Search > Text > Workspace” as a workaround. Regarding disabling inlayHints in the editor, you can add the following configura...
by ESP_kondalkolipaka
Mon Sep 02, 2024 7:45 am
Forum: IDEs for ESP-IDF
Topic: PATH
Replies: 1
Views: 1280

Re: PATH

Hello,

Please update to the latest IDE version 3.0.0, which uses an LSP-based C/C++ editor and should resolve these issues with the headers and indexer.

https://github.com/espressif/idf-eclips ... tag/v3.0.0

Thanks
by ESP_kondalkolipaka
Tue Aug 13, 2024 6:28 am
Forum: IDEs for ESP-IDF
Topic: Very disappointed in the decision to use the C/C++ (LSP) editor
Replies: 6
Views: 3301

Re: Very disappointed in the decision to use the C/C++ (LSP) editor

Hello, I have published a blog post on why we have moved to the LSP Editor and what it offers. Please check here https://developer.espressif.com/blog/espressif-ide-lsp-support/ Many users have been reporting that the Eclipse CDT Editor/Indexer is unable to resolve headers and compilation units when ...
by ESP_kondalkolipaka
Wed Jul 10, 2024 11:45 am
Forum: IDEs for ESP-IDF
Topic: The color palette
Replies: 9
Views: 6245

Re: The color palette

Hello,

If you're talking about Espressif-IDE 3.0, please check the preference window for Preferences > General > Editors > Text Editors

Thanks
by ESP_kondalkolipaka
Fri Jun 28, 2024 3:49 am
Forum: IDEs for ESP-IDF
Topic: Go To Definition
Replies: 3
Views: 6122

Re: Go To Definition

Hello,

You can use Command + Click or Ctrl+Click based on OS for function navigation. It should work.
by ESP_kondalkolipaka
Fri Jun 28, 2024 3:44 am
Forum: IDEs for ESP-IDF
Topic: Espressif-IDE v3.0.0 randombly crashes on Ubuntu 24.04
Replies: 3
Views: 3648

Re: Espressif-IDE v3.0.0 randombly crashes on Ubuntu 24.04

Hello,

This could be resolved by settting WEBKIT_DISABLE_COMPOSITING_MODE=1 in the environment variables . Please check this -
https://github.com/eclipse-platform/ecl ... 2023171644

Thanks
by ESP_kondalkolipaka
Sun Jun 23, 2024 4:14 pm
Forum: IDEs for ESP-IDF
Topic: ESP IDE 2.12 and undersolved include issue
Replies: 4
Views: 3439

Re: ESP IDE 2.12 and undersolved include issue

Hello, Change to 3.0 is not an option as I am getting lot of compile issues and for big and mature project it's much better to deal with indexer (or live without it) than do full porting Could you share an sample project which we could try to reproduce the compiler error you're having with the 3.0.0...
by ESP_kondalkolipaka
Sun Jun 23, 2024 4:07 pm
Forum: IDEs for ESP-IDF
Topic: Espressif-IDE v3.0.0 (stable) --- Can not get Code format to work
Replies: 6
Views: 4044

Re: Espressif-IDE v3.0.0 (stable) --- Can not get Code format to work

Hi All, Here is the way to generate default .clang-format file based on the configurable format style options For example in macOS: > brew install clang-format > clang-format -style= GNU -dump-config > .clang-format Then one could customize the .clang-format file based on their preferences. Thanks
by ESP_kondalkolipaka
Sun Jun 23, 2024 3:08 pm
Forum: IDEs for ESP-IDF
Topic: Espressif-IDE v3.0.0 (stable) --- Can not get Code format to work
Replies: 6
Views: 4044

Re: Espressif-IDE v3.0.0 (stable) --- Can not get Code format to work

Hello, You can create a .clang-format file at the root of the project and define the format style accordingly. We will take this up in the next release, we can create it by default. Below references might help https://github.com/eclipse-cdt/cdt-lsp?tab=readme-ov-file#save-actions-using-clang-format ...