What is the shortcut to delete last word in csh?

csh

Solution

This works for me with tcsh: `ALT` + `BACKSPACE`. Hope that helped!

Problem

In bash, I use Ctrl + w to do so, but it is not working in my csh and instead of deleting a word, it is cleaning entire line. How to delete last word ? Although Ctrl + u is working fine in both csh and bash. I'm running csh inside screen (ubuntu).

Original source