6

Is there a way to remove Do you want to exit w3m? (y/n) from prompting after I press q to exit the application?

Eric Yun
  • 61
  • 2

3 Answers3

5

You can use the -o confirm_qq=false option on the command line.

Example:

$ w3m -o confirm_qq=false
take88
  • 151
  • 1
  • 2
1

You can quit without confirmation by pressing Q instead. Found this in the manual here or man w3m.

philip becker
  • 303
  • 2
  • 6
1

You can add the following to your ~/.w3m/config:

confirm_qq false
Razzi Abuissa
  • 3,337
  • 2
  • 28
  • 29