hide-comments
Hide all comments in your code
raultapia 44 0 1.3.0 MIT GitHub
  • Made for Pulsar!

    This package was written specifically for Pulsar and did not exist in the Atom package repository.

Hide Comments

Hide all comments in your code.

Installation

ppm install hide-comments

Keymap

Default keymap is: CTRL + ALT + H.

Settings

Remove empty lines when hiding comments.

Enabled by default. If enabled, this:

print("EXAMPLES") #this is a title
#This is
#a hello world
#example
print("Hello, World!")

becomes:

print("EXAMPLES")
print("Hello, World!")

instead of:

print("EXAMPLES")



print("Hello, World!")