Hi
I am going thru the courses, And i am trying to use the neat feature of Autocomplete in python / vs code.
I have a big problem as my English is not that good, and i am constantly making misstakes when typing.
(i know learn how to spell correctly is the obvious solution)
How can i make the code editor when dooing the courses or rosjects work better.
For instance when i type:
from services_quiz_srv.srv import Tu
#it should normaly give you an option of the services that are alreaddy in the services_quiz_srv.srv
#another example that works (almost great is):
from geometry_msgs.msg import Twist
test1 = Twist()
test1.ang #here it gives you an option of angular
#but when you continue
test1.angular #after pressing . it will not give you the aditional options of x or y or z ....
#an exemple that does not work at all
from services_quiz_srv.srv import Turn
test2 = Twist()
test2. #gives you 0 options whatsover
i know it is not a make it or break it, but what it does is, it causes me to look for spelling errors in the code instead of focusing on learning the actual system. i had a case where i lost quite a lot of time craking my head against the wall until i noticed it was a simple spell error
When i try similar thing on my ubuntu on VS code that i have installed it works great even with custom messages.
So then i end up copy pasteing the code that i type in my VS code editor on my computer and then pasting it back wich is not the most optimal specially when you want to test code and so on…
Can someone please help me with this?
Thanks Ziga