Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Commenting/Uncommenting a block of Python code in TextWrangler

Searched this a bit before asking. There is another thread that seems to be asking about this same issue in the IDLE editor, but I'm wondering about TextWrangler.

The manual lists "Un/Comment Selection" but in the keyboard shortcut section it doesn't seem to appear, and it's certainly not under my "Text" dropdown when I'm editing a Python file. (I briefly checked other languages and still did not see the option in the dropdown.)

Is there some way to handle this or add the feature for Python? If there is some comprehensive guide to using TextWrangler with Python (or if you want to pimp any other editor for OS X besides the tired old emacs/vim, let me know.)

Thanks

like image 490
urbushey Avatar asked Jul 10 '11 19:07

urbushey


People also ask

How do you comment out a block of code in Python?

The most common way to comment out a block of code in Python is using the # character. Any line of code starting with # in Python is treated as a comment and gets ignored by the compiler.

How do you comment multiple lines in VSCode Python?

For python code, the "comment block" command Alt + Shift + A actually wraps the selected text in a multiline string, whereas Ctrl + / is the way to toggle any type of comment (including a "block" comment as asked here). You can find the comment options in the Edit menu if you forget the keyboard shortcuts.

How do you comment multiple lines in Pyspark?

Using triple-quoted string literals Another way to add multiline comments is to use triple-quoted, multi-line strings. These strings are to be used carefully and should not be confused with Docstrings (triple-quoted string literals appearing right after a function/class/module to generate documentation).


1 Answers

It's in the "Text" menu (5th entry). The command doesn't have a keyboard shortcut by default, but you should be able to add one with the system's keyboard preferences.

Exact instructions for adding block comment shortcut for TextWrangler:

  1. System Preferences
  2. Keyboard
  3. Keyboard Shortcuts
  4. Application Shortcuts
  5. +
  6. select TextWrangler from the Application drop-down
  7. enter exactly 'Un/Comment Selection' in the Menu Title field
  8. enter the shortcut you want
  9. Add

    -- There you go

like image 112
omz Avatar answered Oct 27 '22 14:10

omz