Intellisense doesn't work correctly when you do:
```
process.stdin.
```
It says:
> IntelliSense was unable to determine an accurate completion list for this expression.
The provided list contains all identifiers in the file.
The code I am writing:
```
var stdin = process.stdin.setRawMode();
stdin.on('keypress', function (chunk, key) {
if (key && key.ctrl && key.name == 'c') process.exit();
});
```

```
process.stdin.
```
It says:
> IntelliSense was unable to determine an accurate completion list for this expression.
The provided list contains all identifiers in the file.
The code I am writing:
```
var stdin = process.stdin.setRawMode();
stdin.on('keypress', function (chunk, key) {
if (key && key.ctrl && key.name == 'c') process.exit();
});
```
