i have omni completion working fine for regular python functions, but how do i also get it to work for the wxpython functions?
Did you try vim.org? It has a Pydiction project on there that includes wxPython autocomplete as well as several other 3rd party Python libraries.
Related
If I attempt to use the Valloric/YouCompleteMe Vim plugin on Mac OS Catalina, am I absolutely required to install MacVim due to the Python 3.6+ requirements?
My issue is that MacVim opens in a separate program and would complicate a basic workflow instead of just using the system Vim.
"In mid 2020, YCM dropped support for Python 3.5 runtime.
Why?
On 13th September 2020, Python 3.5 will be officially end of life. And therefore, so will its relationship with YouCompleteMe and ycmd."
Source:
https://github.com/ycm-core/YouCompleteMe
I don't think it's required, it's possible it will work, but there wont be support for new issues. I would recommend trying to meet the requirements.
To address the second issue, macvim can be incorporated into your workflow to work exactly the same as your system vim. Here's a question that can help with that,
How to run mvim (MacVim) from Terminal?
I use PyCharm using the Vim emulation feature IdeaVim.
I have tried, without success, to integrate snipMate into PyCharm, which works like a Charm :P in the standard Vim.
Does anybody known if there is a Vim snippet pluging which is compatible with PyCharm? Also, can you use snipMate within PyCharm? It does not even seem to be loaded in my case!
IdeaVim doesn't provide the functionality of snippets.
In IntelliJ IDEA snippets are called "Live Templates". They can be used and configured as follows: https://www.jetbrains.com/help/idea/using-live-templates.html
Does anybody know how to get Jython support in VIM / gVIM? (preferably on windows or alternatively on mac)
By Jython support I mean code completion, syntax highlighting etc. especially when working with third party .jar files (e.g. sikulixapi.jar from Sikuli /SikuliX).
Thanks in advance.
Cheers
Tset Noitamotua
I started using Haskell today and am following the tutorial through learnyouahaskell.com. However, in the tutorial all of their syntax automatically gets colored in the terminal. I am using Command Prompt through ConEmu and was wondering if there was any way that I could also get this coloring (easily). I've been looking for downloads or suggestions online and couldn't find anything. I have Notepadd++ for when I want to make .hs files, but nothing for the terminal itself once I initialize ghci.
I would suggest using Emacs with haskell-mode. I'm a Emacs fan, and I just started exploring Haskell too, haskell-mode works perfectly. I don't know if there is something like this for Notepad++.
Here is full list of editors that support Haskell highlighting. As for terminal colouring, I doubt that it will be easy on Windows (you're on windows, right?), you need an IDE.
Can VIM do auto code completion like what Eclipse does? Usually I connect to my Linux developing server through Putty from my Windows laptop. So, I hope I can find a plugin for VIM which can do drop-down menu like auto completion when I can type variable names in Putty, is this possible?
Thanks!
Yes, in a sense - Vim has Completion commands that can help you automatically find the completion text for partial variable names.
In a nutshell, type a partial variable name and then press CtrlP to search for a matching name.
Yes, it's possible. Vim already features that general style of code completion built-in, under the name of Omni completion.
The default installation doesn't allow for auto-invocation, but if you install this script, that allows it to happen.
Note that, depending on the language you'll be working with, you may need additional scripts to handle auto-completion for that language, and may even need to change the auto-invoke script to recognize when to invoke the completion. Since you haven't said what programming language you'll want to work with, it's a bit hard to say if you need more than this, but I recommend checking the help file.
Try to use http://eclim.org/ - using eclipse core with VIM via plugins.
To not start the complete ecplise core but have a C/C++ member completion, try
http://www.vim.org/scripts/script.php?script_id=1520
- Complete namespaces, classes, structs and union members.
- Complete inherited members for classes and structs
(single and multiple inheritance).
- Complete attribute members eg: myObject->_child->_child etc...
Currently vim has no of plugins for the auto code completion feature, I am using youcompleteme plugin, combined with vim-snippets, ultisnips and supertab plugins. You can tab complete the code using snippets (a small text which can be expanded for full code), and a large number of languages are supported.
For simple text files also a drop down menu comes for the words you have typed earlier.