this post was submitted on 21 May 2024
765 points (95.2% liked)

linuxmemes

19602 readers
2965 users here now

I use Arch btw


Sister communities:

Community rules

  1. Follow the site-wide rules and code of conduct
  2. Be civil
  3. Post Linux-related content
  4. No recent reposts

Please report posts and comments that break these rules!

founded 1 year ago
MODERATORS
765
Linux not in meme (sh.itjust.works)
submitted 1 month ago* (last edited 1 month ago) by [email protected] to c/linuxmemes
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 13 points 1 month ago (1 children)

Eclipse is Free Software and as such it is valuable even if better commercial options exist.

http://www.gnu.org/licenses/license-list.html#EPL2

[–] [email protected] 5 points 1 month ago (1 children)

Why not something else free? Geany, etc.?

[–] [email protected] 9 points 1 month ago (1 children)

I personally don't use a full IDE, but KDE's Kate.

[–] [email protected] 2 points 1 month ago (1 children)

I keep flip-flopping between Kate and pycharm community. I prefer Kate's LSP access, but pycharm's management of multiple projects is great.

I wish I could easily set up Kate so it would open random text documents in a separate session from my session that's running a certain project. And I wish it were aware of whether a session is running on the same activity. (In fact what I'd really like is per-activity Kate sessions).

Trouble is, I'm not good enough at C++ to make a merge request for those features.

[–] [email protected] 2 points 1 month ago (1 children)

You guys are using graphical IDEs and text editors? I've been learning to program in neovim.

[–] [email protected] 1 points 1 month ago (1 children)

With 20+ years of using various Unix OS's as my primary OS, I can say for sure that my answer to "vi or emacs?" is "neither."

[–] [email protected] 2 points 1 month ago

Tbh, it just fits my workflow better. I would find myself editing stuff in nano more so than something like vscode because navigation in a file browser gets a little clunky for me. So it seemed fitting to learn neovim. I find the features more of a nuisance than a benefit at this stage and I want to properly understand how to use the underlying technologies these programs extract away.

I typically know exactly what I'm looking for and if I need more help I could check something out like fuzzy find. Those search boxes on file browsers are hit and miss for me, especially with Dot files. I store my scripts in a folder called .scripts and I reference them alot while building my apps.

Actually most my apps start out as scripts because prototyping is easier when you don't initially worry about UI or optimization and focus on the core functionality.