sublimetext4

Sublime Text 4: folding Python functions with a line break

Sublime Text 4: folding Python functions with a line break Question: I’m running Sublime Text Build 4143. Given a function with parameters that spill over the 80 character limit like so: def func(parameter_1, parameter_2, parameter_3, parameter_4, parameter_5, parameter_6): """ """ print("hello world") return ST will show a PEP8 E501: line too long warning and highlight …

Total answers: 2

Windows, Python, VENV, and Sublime Text Build systems: Path Error When Activating VENV

Windows, Python, VENV, and Sublime Text Build systems: Path Error When Activating VENV Question: Okay, I’ve looked through a bunch of python venv with sublime text questions, and I’m pretty sure this issue is due to the specifics of venv on windows. I’m on Windows, using Python 3.10, and the virtualenv package to manage my …

Total answers: 1

code does not work in sublime text when using function with "return" statement

code does not work in sublime text when using function with "return" statement Question: I’m new to python programming, and as a beginner I want to start by using a code editor, I choose sublime text 4 but I face this problem, So help me please ! This is the code : def return_string(your_string): if …

Total answers: 2

Virtualenvs in Sublime Text 4

Virtualenvs in Sublime Text 4 Question: I have the different virtualenv’s and to be able to specify which virtualenv to use with each project I used package Virtualenv (https://packagecontrol.io/packages/Virtualenv) in Sublime Text 3. That was so to the day when through the update I became the owner of the Sublime Text 4. The package Virtualenv …

Total answers: 2