You are not logged in.
Pages: 1
The wiki states that VIM has python support.
The PKGBUILD also seem to list python in the makedepends
But then I do not understand why the feature is marked with the minus sign:
$ vim --version | grep python
+cmdline_hist +langmap -python +viminfoand also from the editor, by executing :python
E319: Sorry, the command is not available in this versionSo what am I missing?
Offline
the python vim command is python 2, you need to use python3 command (also, you clearly not pasted the full output of vim --version | grep python)
Offline
In my knowledge, every single regularly maintained text editor supports Python
I messed my Arch Linux installation, then fixed it ![]()
"Sometimes the best complexity is simplicity." - BluePy, 1856.
Offline
What are you trying to do with the command :python?
If you're trying to launch an instance of the python interpreter, use the command :!python
If you want to run the project within vim use the command :!python ./path-to-python-command
Also vim --version, only displays information about your vim instance and not the supported languages , vim supports syntax highlighting for all of these languages.
You can also invoke any shell command with the ! syntax, so :!foo would run the shell command foo.
Offline
plugin support, try
:python3 print('Hello, world!')Online
Pages: 1