In Visual Studio Code / vscode, when I search for something, the beginning of the line in each search result may be cut off. How do I see the cut off part?
For example, say I search for 'directory'
, a search result may show this:
require('../../../directory');
while the actual, full line is this:
var directory = require('../../../directory');
How do I get vscode to display the full line (second example)?
If this has been asked before, I cannot find it. If anyone else can, feel free to mark this one as a duplicate.