-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CTRL+R (Symbol browser) Stopped working without reason #208
Comments
Sorry, but what command does |
From @JustDevZero on October 31, 2017 13:58 Hi there again, AFAIK the CTRL+R is trying to invoke the On the other hand, here I attach a gif with that section of the screen, I attach it as a gif, so you can see how it responds. Which I found weirder, is that the |
Have you configured your workspace/user settings to ensure it points to Python2.7 (the one you want)? |
From @Tantalus13A98B5F on November 1, 2017 5:40 i've got the same issue. i've made sure that the |
From @JustDevZero on November 2, 2017 9:5 As @Tantalus13A98B5F described. I've made sure the tags are generated, and the python.pythonPath is ok, it works with Markdown, ruby, etc... but not here in python. Also tried to disable every linter/stuff non-python related but still :( As for your questions, @DonJayamanne for now the config is like this: As for the settings, here are they |
From @Tantalus13A98B5F on November 9, 2017 12:55 Well. I looked into the code today. I'm using if jedi.__version__ in ('0.9.0', '0.10.0'):
return self._extract_range_jedi_0_9_0(definition)
else:
return self._extract_range_jedi_0_10_1(definition) The fallback behavior uses the following module: from jedi.parser.python import parse However, it doesn't exists there for |
From @Tantalus13A98B5F on November 9, 2017 13:19 @JustDevZero maybe you should check the version of your |
Hi there again, I've tried the advice from @Tantalus13A98B5F, reverting the version of jedi, from 0.11 to 0.8 (the old one), but now, instead of "No symbols", I've got an eternal loading... |
We have updated the version of Jedi in the extension. Is this still an issue for people? |
Closing due to lack of response for more info. If the info is provided in the future we will be happy to re-open this. |
From @JustDevZero on October 27, 2017 7:43
Environment data
VS Code version: Version 1.18.0-insider
Commit: 509630ffe3fabf2e1f49b416bb83f5ff0877b042
Python Extension version: 0.7.0
Python Version:
python2.7 --version
Python 2.7.14 (which is the one I want)
python --version
Python 3.6.2 (which is the default os system)
OS and version: Arch Linux (Rolling Release, updated)
Actual behavior
AFAIK Ctags file is correctly generated, but CTRL+R is not showing any symbol.
Expected behavior
Explore against the symbols of the file.
Steps to reproduce:
Logs
Output from
Python
output panelOutput from
Console window
(Help->Developer Tools menu)Copied from original issue: DonJayamanne/pythonVSCode#1347
The text was updated successfully, but these errors were encountered: