About 8,760,000 results
Open links in new tab
  1. How can I do a line break (line continuation) in Python (split up a ...

    320 From PEP 8 -- Style Guide for Python Code: The preferred way of wrapping long lines is by using Python's implied line continuation inside parentheses, brackets and braces. Long lines can be …

  2. Duplicate line in Visual Studio Code - Stack Overflow

    I am trying to find the shortcut for duplicating a line in Visual Studio Code (I am using 1.3.1) I tried the obvious CTRL + D but that doesn't seem to work.

  3. How do I duplicate a line or selection within Visual Studio Code?

    May 13, 2015 · Using Microsoft's Visual Studio Code, how do I duplicate a line of code and then move it up and down? (Similar to Sublime's cmd+shift+d behaviour)

  4. How can I comment multiple lines in Visual Studio Code?

    I cannot find a way to comment and uncomment multiple lines of code in Visual Studio Code. Is it possible to comment and uncomment multiple lines in Visual Studio Code using some shortcut? If …

  5. How can I write multi-line code at the Python REPL (in a terminal ...

    Python automatically detects code blocks in sections like for-next, while, etc. Just put a ':' <-- Colon symbol after some code. Then the next line will have a continuation symbol ('...') in front of it instead …

  6. Is there a standard way to count lines of code? - Stack Overflow

    Mar 19, 2019 · In the .NET world there seems to be a global agreement that a line of code (LoC) is a debugging sequence point. A sequence point is a unit of debugging, it is the code portion highlighted …

  7. visual studio code - VSCode - Shortcut to copy Current Line - Stack ...

    Jan 23, 2020 · What is the shortcut to copy current line in VSCode? I know we can Ctrl+L to select the line then Ctrl+C to copy. But is there any better solution. For example, in Geany, we can Ctrl+Shift+C …

  8. What is a GitLab line_code as referenced when creating a new merge ...

    Jan 27, 2021 · Line code is hash of the file name + underscore + old line number + underscore + new line number The documentation is wrong. line_code is required only if you are using …

  9. visual studio code - Accept GitHub Copilot suggestions line by line ...

    In Visual Studio Code (VSCode), there is a helpful feature that allows you to accept code suggestions word by word not line by line. For Windows users, you can achieve this by using Ctrl + Right Arrow to …

  10. How to wrap long lines inside of markdown ``` code ``` in Github and ...

    Jul 18, 2021 · The imperfect workaround I currently use is to replace the ``` with a single backtick: ` ...and do that line by line. which is infeasible for larger code chunks, and also makes highlighting the …