Alexandr Fedorov
- Total activity 24
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 8
-
Created PyZero in PyCharm doesn't recognize `screen` variable
I use simple example from PyZero tutorial in PyCharmimport pgzrun WIDTH = 300 HEIGHT = 300 def draw(): screen.fill((128, 0, 0)) pgzrun.go()The variable `screen` is highlighted as error - Unr... -
Created Setup completition provider in the LightPlatformCodeInsightFixture4TestCase
I want to test my completition provider. How do I set it up in TestFixture - LightPlatformCodeInsightFixture4TestCase It looks like SDK test framework does not use plugin.xml -
Created Kotlin Coroutines version in CLion plugin
AnsweredI am creating plugin for CLion and need kotlin coroutines. The version that is bundled with intellij plugin is 1.2.1. Intellij still sees only this version when I add implementation("org.jetbrains... -
Created Can't find usage of a method from template class
AnsweredI have a simple example of using templates. struct Message { int value;};class ConcreteTemplateMessageReceiver {public: Message receive() { return {}; }};template<typename R>class ...