You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
vim and python is installed by command : pacman -S vimpacman -S python
in vim, enter Ctrl+p, will get this error:
Error detected while processing /home/kun/.vim/plugged/LeaderF/autoload/leaderf/Any.vim:
line 14:
Traceback (most recent call last):
File "<string>", line 1, in<module>
ModuleNotFoundError: No module named 'leaderf'
Error detected while processing functionleaderf#Any#start[4]..leaderf#LfPy:
line 1:
Traceback (most recent call last):
File "<string>", line 1, in<module>
NameError: name 'anyHub' is not defined
Steps to reproduce
Actual behaviour
Expected behaviour
The text was updated successfully, but these errors were encountered:
I'm new here - I apologize for the silly question...
Could reinstalling the LeaderF plugin solve my problem?
I've performed a reinstallation of the plugin, including the C extension, but the result is still the same.
Based on messages like:
"Symbol PyBool_FromLong (number 1) is not exported from the dependent module vim."
I assume the problem lies in the configuration or availability of some symbols during the vim->leaderf->python communication.
I've compiled Vim to have Python3 support statically linked, but the result remains the same. :-(
Vim reports that it has Python3 support, and the installation of LeaderF went fine...
Question:
Is there a way to verify the functionality of LeaderF outside of Vim?
Does the LeaderF plugin call any C or Python functions?
vim --version
ornvim --version
::echo has("python")
:0
:echo has("python3")
:1
:echo &pythondll
(only vim, not neovim)::echo &pythonthreedll
(only vim, not neovim)::py print(sys.version)
::py3 print(sys.version)
::echo g:Lf_Debug_Cmd
::echo g:Lf_FilesFromCache
:Describe your question, feature request, or bug.
vim and python is installed by command :
pacman -S vim
pacman -S python
in vim, enter Ctrl+p, will get this error:
Steps to reproduce
Actual behaviour
Expected behaviour
The text was updated successfully, but these errors were encountered: