Code Monkey home page Code Monkey logo

Comments (6)

tclose avatar tclose commented on June 19, 2024 1

Re your first comment, yes, that would be my preference.

Re #65, I would consider them separate issues personally. Solving #65 would be nice, but isn't a big deal to my mind as you just need to enter another tab when starting to define the function arguments.

from vsc-python-indent.

kbrose avatar kbrose commented on June 19, 2024 1

Hi @tclose, there is a new option (keepHangingBracketOnLine) available in v1.11.0 of the extension for this behavior. Please note that I bumped the required version of VSCode to the most recent, so you'll have to be on an up-to-date VSCode to update the extension.

If you have problems, please submit a new issue.

from vsc-python-indent.

kbrose avatar kbrose commented on June 19, 2024

Hey @tclose, thanks for submitting an issue.

Right now the code makes no distinction between function calls and other kinds of brackets (()[]{} are all treated the same). Would you be ok with the setting also changing the following behavior?

variable = [|]
# goes to...
variable = [
    |]

from vsc-python-indent.

kbrose avatar kbrose commented on June 19, 2024

This is actually related to #65 I think. If such an option were added, then we'd have to do more parsing to figure out if we were in the middle of an indent-increasing section so that we could add an extra level of indentation per PEP8. Examples adapted from PEP8:

# Add 4 spaces (an extra level of indentation) to distinguish arguments from the rest
# (the next set of lines will be at a higher level of indentation).
def long_function_name(
        var_one, var_two, var_three,
        var_four):
    print(var_one)

# Do NOT add 4 extra spaces
# (the next set of lines will be at the same level of indentation).
foo = long_function_name(
    var_one, var_two,
    var_three, var_four)

# Relatedly, I think we'd want to do similar behavior for things like "if"
if (
        x in my_first_list_maker(arg1, arg2)
        + my_second_list_maker(arg3, arg4)):
    print(x)

from vsc-python-indent.

tclose avatar tclose commented on June 19, 2024

from vsc-python-indent.

jkyeung avatar jkyeung commented on June 19, 2024

I cannot believe I am just discovering this setting now (because I've been using the extension pretty much since inception). But thank you! It's a game-changer for me.

from vsc-python-indent.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.