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
[ x] I have searched YCM's issue tracker to find issues similar to the one I'm
about to report and couldn't find an answer to my problem. (Example Google
search.)
[ x] If filing a bug report, I have included the output of vim --version.
[ x] If filing a bug report, I have included the output of :YcmDebugInfo.
[ x] If filing a bug report, I have attached the contents of the logfiles using
the :YcmToggleLogs command.
[ x] If filing a bug report, I have included which OS (including specific OS
version) I am using.
[ x] If filing a bug report, I have included a minimal test case that reproduces
my issue, using vim -Nu /path/to/YCM/vimrc_ycm_minimal, including what I
expected to happen and what actually happened.
If filing a installation failure report, I have included the entire output
of install.py (or cmake/make/ninja) including its invocation
[x ] I understand this is an open-source project staffed by volunteers and
that any help I receive is a selfless, heartfelt gift of their free time. I
know I am not entitled to anything and will be polite and courteous.
[ x] I understand my issue may be closed if it becomes obvious I didn't
actually perform all of these steps.
Thank you for adhering to this process! It ensures your issue is resolved
quickly and that neither your nor our time is needlessly wasted.
Issue Details
Provide a clear description of the problem, including the following key
questions:
What did you do?
Include steps to reproduce here.
class TestClass( object ):
def __init__( self, value ):
self._var = value
try:
self.DoSomething()
except ValueError:
pass
def DoSomething( self ):
for i in range( 0, 100 ):
if i < self._var:
print( '{0} is less than the value'.format( i ) )
else:
print( '{0} might be more'.format( i ) )
raise ValueError( 'Done' )
def Main():
t = TestClass( 18 )
t._var = 99
t.DoSomething()
Main()
vim main.py
:YcmCompleter
Include description of a minimal test case, including any actual code required
to reproduce the issue.
If you made changes to vimrc_ycm_minimal, pase them here:
set nocp
set rtp+=~/.vim/bundle/YouCompleteMe
source ~/.vim/bundle/YouCompleteMe/plugin/youcompleteme.vim
What did you expect to happen?
Include description of the expected behaviour.
Should get options to GoToDefinition, etc.
What actually happened?
ValueError: No semantic completer exists for filetypes: ['python']
Include description of the observed behaviour, including actual output,
screenshots, etc.
-- Resolve completions: Up front
-- Client logfile: /tmp/ycm_pkq1gbsj.log
-- Server Python interpreter: /usr/bin/python3
-- Server Python version: 3.6.9
-- Server has Clang support compiled in: True
-- Clang version: clang version 10.0.0 (https://github.com/ycm-core/llvm 038587147cf2f97d1c3e677042f69560c65b5bea)
-- No extra configuration file found
-- Server running at: http://127.0.0.1:37059
-- Server process ID: 13162
-- Server logfiles:
-- /tmp/ycmd_37059_stdout_xb3scfzq.log
-- /tmp/ycmd_37059_stderr_6bectkt7.log
Output of YcmDiags
Native filetype completion not supported for current file, cannot force recompilation.
Output of git rev-parse HEAD in YouCompleteMe installation directory
4891999f055167cf845671c231d7740c104074bd
Contents of YCM, ycmd and completion engine logfiles
Issue Prelude
Please complete these steps and check these boxes (by putting an
x
insidethe brackets) before filing your issue:
Frequently Asked Questions section.
about to report and couldn't find an answer to my problem. (Example Google
search.)
vim --version
.:YcmDebugInfo
.the
:YcmToggleLogs
command.version) I am using.
my issue, using
vim -Nu /path/to/YCM/vimrc_ycm_minimal
, including what Iexpected to happen and what actually happened.
of
install.py
(orcmake
/make
/ninja
) including its invocationthat any help I receive is a selfless, heartfelt gift of their free time. I
know I am not entitled to anything and will be polite and courteous.
actually perform all of these steps.
Thank you for adhering to this process! It ensures your issue is resolved
quickly and that neither your nor our time is needlessly wasted.
Issue Details
vim main.py
:YcmCompleter
ValueError: No semantic completer exists for filetypes: ['python']
Diagnostic data
Output of
vim --version
Output of
YcmDebugInfo
Output of
YcmDiags
Output of
git rev-parse HEAD
in YouCompleteMe installation directoryContents of YCM, ycmd and completion engine logfiles
OS version, distribution, etc.
NAME="elementary OS"
VERSION="5.1.5 Hera"
ID=elementary
ID_LIKE=ubuntu
PRETTY_NAME="elementary OS 5.1.5 Hera"
LOGO=distributor-logo
VERSION_ID="5.1.5"
HOME_URL="https://elementary.io/"
SUPPORT_URL="https://elementary.io/support"
BUG_REPORT_URL="https://github.com/elementary/os/issues/new"
PRIVACY_POLICY_URL="https://elementary.io/privacy-policy"
VERSION_CODENAME=hera
UBUNTU_CODENAME=bionic
Output of build/install commands
The text was updated successfully, but these errors were encountered: