Any good Haxe IDE for linux / ubuntu? [closed] - linux

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I have find and tried different Haxe IDE in ubuntu and all have their own issues and dependencies even some have lost their support. Which is causing the IDE difficult to get ready for coding or development.
Currently using HIDE which is fair enough :s and get install in one command.
Is there any good working IDE for linux system ?
[update]
Haxe studio has no autocomplete feature
Sublime 2 bundle also do not support autocomplete or has one but don't show right properties
Gedit2 plugin has bugs which says python not found
Flashdevelope using wine opens a window which show list of flashdevelope extentions and do not go further then this screen.

I think you might want to look at this page:
https://haxe.org/documentation/introduction/editors-and-ides.html
The options for Linux are:
Visual Studio Code (With Haxe extension)
IntelliJ IDEA (With Haxe plugin)
Sublime Text (With Haxe Bundle)
VIM (With Vaxe Plugin)
HaxeDevelop using Wine

Related

Groovy formatter/beautifier in Visual Studio Code [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
For supported files in VSCode we get an option (when you right click on the file editor) to Format Document (ALT+SHIFT+F).
But unfortunately for Groovy this option is not available. And according to the VSCode community, there are no plans to implement this feature.
Is there an alternative solution available, specifically for VSCode?
I don't know how well this works for formatting other than indentation, but I simply changed the file extension from .groovy to .js, right clicked in the file, and selected "Format Document". It fixed the indentation for me.
There is now a Visual Studio Code extension to Lint, Format and Auto-fix Groovy and Jenkinsfiles ! :)
https://marketplace.visualstudio.com/items?itemName=NicolasVuillamy.vscode-groovy-lint Visual Studio Code extension embedding npm-groovy-lint, itself embedding CodeNarc
It would only be available via an extension, which you can search for in the marketplace.
Unfortunately it doesn't look like there are many extensions for Groovy at all. And if that can be considered an indication of the language's popularity, it's highly unlikely that broad support would ever be added to VS Code out of the box.

Is there a VIM plugin for Windows that allows stepping through code? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Many IDEs have functionality that allow you to understand code by "stepping" into function calls to look at the definition, and what the function actually does. It might also allow you to look at the values of defines (in C) and maybe color code blocks of code with a different background color if they are not built during compile time.
Is there any plugin that would allow VIM to be used this way?
Actually, what you ask for is an IDE.
But VIM is more an editor than an integrated development environment.
You can config VIM to act like an IDE:
Use ctags for function/variable definition jumping.
Use tpope/unimpaired for showing errors.
You should keep in mind that VIM is for editing.
Wish you good luck.

How can we edit Rust files in VSCode? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I like the new VSCode and would love to use it for Rust programming. Are there any rust plugins available?
Support for Rust syntax coloring will be in the next VSCode update.
"VSCode is based on Atom". This is not accurate. VSCode is built on top of the Electron (was the AtomShell), the editor and workbench are a totally different code based (the Monaco editor)
For now VSCode doesn't support plugins Visual Studio Code Plugins (Format / Spell Check)
I know that there is Rust plugin for Atom IDE https://github.com/zargony/atom-language-rust and VSCode is based on Atom.

Multiline Tabbar Text Editor on Linux [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I'm looking for text editor that run natively on linux which support multi-line tabbar and don't truncate long file names. I'm usually using Notepad++ in Windows.
Here is a screenshot of what I would like (using notepad++):
Please give me recommendation. Thank you.
The top 3 seem to be the following:
sublime, I guy I work with loves this one and it is cross os compatible.
geany, great for if you do programming and are a GTK2 fan.
kate, KDE editor with LOTS of options
vim, what most will tell you to use....
Additionally you can install Notepad++ through Wine, if you just cant live without it. :)
You can do this with atom. It's highly configurable through CSS and even is cross-platform.

How are command-line GUIs made? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I've always wanted to know how CL GUIs like top or nano or vi are constructed? I have a need to actually make one and am looking for a guide or tutorial on the general idea behind them.
Here is a bunch of them.
Also there is a list.
CDK
Dialog
ncurses
Newt, a widget-based toolkit
PDCurses
SMG$
Turbo Vision
You could start by reading about ncurses, it’s a very well-known library to draw on the terminal
Check out TWIN (apparently, inspired by Turbo Vision) by Massimiliano Ghilardi. More screenshots are available here. Be sure to use the GitHub version, as SourceForge repository has been unmaintained since 2002.
If you don't mind your GUI running in a JVM, take a look at Lanterna (Java and Clojure bindings).
I've also seen a post about Turbo Vision "ported" to (or rather rewritten using) C# and XAML, but haven't had a chance to examine it.

Resources