gleam-lang / gleam-mode

🐙 Gleam support for Emacs
Apache License 2.0
77 stars 20 forks source link

uncomment-region does not work #25

Closed 2ynn closed 2 months ago

2ynn commented 2 months ago

Steps to preproduce:

  1. place cursor on existing line, e.g let n = 3
  2. call comment-line : the line gets commented out: // let n = 3
  3. select the whole line
  4. call uncomment-region

Current behavior: nothing happens Expected: the line gets back to being uncommented: let n = 3