pycharm-pyxl icon indicating copy to clipboard operation
pycharm-pyxl copied to clipboard

IntelliJ Pyxl Extensions

Results 12 pycharm-pyxl issues
Sort by recently updated
recently updated
newest added

I have an error with PyCharm Professional 2020.3.1 Any suggestions? ``` java.lang.NoSuchMethodError: 'boolean com.jetbrains.python.psi.LanguageLevel.hasWithStatement()' at com.christofferklang.pyxl.parsing.PyxlHighlightingLexer.getTokenType(PyxlHighlightingLexer.java:56) at com.intellij.openapi.editor.ex.util.ValidatingLexerWrapper.getTokenType(ValidatingLexerWrapper.java:50) at com.intellij.openapi.editor.ex.util.ValidatingLexerWrapper.advance(ValidatingLexerWrapper.java:87) at com.intellij.openapi.editor.ex.util.LexerEditorHighlighter.doSetText(LexerEditorHighlighter.java:453) at com.intellij.openapi.editor.ex.util.LexerEditorHighlighter.setText(LexerEditorHighlighter.java:420) at com.intellij.openapi.fileEditor.impl.text.TextEditorImpl.loadEditorInBackground(TextEditorImpl.java:74) at com.intellij.openapi.fileEditor.impl.text.PsiAwareTextEditorImpl.loadEditorInBackground(PsiAwareTextEditorImpl.java:42) at com.intellij.openapi.fileEditor.impl.text.AsyncEditorLoader.lambda$scheduleLoading$0(AsyncEditorLoader.java:96)...

Rebuild the current codebase to target the IDEA 2019, the old build was throwing exception due to a change in the plugin API. Also updated test output spec.

When the Pyxl plugin is installed in PyCharm 2016.3.2, PEP 484 type annotations are not properly recognized. My project interpreter is correctly set to Python 3. I resolved the issue...

Currently generator expressions looks to be unsupported: ![image](https://user-images.githubusercontent.com/627997/29338406-e97dc56c-81c9-11e7-85c0-4327cbd22240.png) ![image](https://user-images.githubusercontent.com/627997/29338449-20f3a3c2-81ca-11e7-8bdd-4feab22b75f5.png) But it works fine if we convert it to list: ![image](https://user-images.githubusercontent.com/627997/29338465-38b6f2ca-81ca-11e7-829e-6ee303605b12.png) Code in question: ```python tag = ( {render_item(n) for n...

The last version at jetbrains from 2014 ![image](https://cloud.githubusercontent.com/assets/140394/17637515/7e6e0de4-60ba-11e6-8103-e166139d2308.png)

When this plugin is installed in PyCharm 2016.1, you cannot open a file that has new line and then pyxl annotation, like this: ``` # coding: pyxl ... other stuff...

With a code snippet like this: ``` from __future__ import print_function print("hi") ``` I get the following error reported by the IDE: "Statement expected, found Py:PRINT_KEYWORD" When I disable the...

``` python {self.render(employee) for employee in employees} ```