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

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.

Related

Better syntax highlighting for Genie [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 have been using scratch-text-editor on elementaryOS, but it seems to highlight Genie code as if it is C# code.
Is there a way to improve syntax highlighting in that particular OS.
Does any text editor can recognize genie's syntax?
GEANY is an open-source, lightweight and fast text editor, providing the main features of an IDE, including syntax-highlighting, with support for Genie.
The following article has installation instructions and also mentions that Geany should work fine with elementaryOS.
http://linuxg.net/install-geany-on-ubuntu/

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.

Plugins or editors for Haskell source code navigation [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 8 years ago.
Improve this question
I'm looking for Vim/Emacs plugins or other editors for handily going through Haskell source code with two major built-in features:
code fold/unfold per function/type/typeclass;
jump to function/type/typeclass definition in the dependent module.
(Haskell website and Hoogle are nice but not what I really pursue.)
In vim, you can :set foldmethod=indent to approximate the first. Use hasktags together with vim's builtin tags support for the second (see especially Ctrl-], Ctrl-T, and in larger projects, :tnext and :tprevious).
See IntelliJ plugin for Haskell:
https://github.com/rikvdkleij/intellij-haskell
Available in Jetbrains plugins repo

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.

Open source Magic Eye generator [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
Do you remember those Magic Eye images that contain a 3D object? I love them!
Are there any open source programs for generating Magic Eye pictures, which ideally work on Linux.
I found a Gimp plugin, but haven't managed to get it working yet.
There's a package in Ubuntu for a program called Stereograph. It's website is here:
http://stereograph.sourceforge.net/index.html
Here's a tutorial on how to make them using GIMP, Blender and Stereograph:
http://linuxgazette.net/104/kapil.html
It's pretty basic, but you should try openstereogram, it's OS independent:
http://code.google.com/p/openstereogram/
There's also this JavaScript app:
http://guciek.github.com/imagzag.html (use the "Magic Eye" option)

Resources