How can I disable the exit confirmation while trying to quit w3m?

Viewed 581

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

3 Answers

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

Example:

$ w3m -o confirm_qq=false

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

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

confirm_qq false
Related