0

I've tried to do it in that way:

enter image description here

But it does not seem to be working. What I've done wrong?

Mohsen Safari
  • 6,669
  • 5
  • 42
  • 58
pashazz
  • 127
  • 3
  • 11

1 Answers1

0

You are telling emacs to treat "*gud*" as a regexp.

This means that "*guddddd" will match, but "*gud*" will not (it will contain a partial match, though).

Same for "*input/output*"

You can toggle the "Handled as a regexp" flag (see your screenshot)

juanleon
  • 9,220
  • 30
  • 41