**Describe the bug** Run Selection/Line sends all comments preceding code. This is not exactly a bug, but it's a bit annoying. **To Reproduce** 1. Create a file `temp.R` with the following content: ```r # 1 # 2 x <-3 ``` 2. Place cursor on line 3 3. Use command `R: Run Selection/Line` **Expected:** Just line 3 is sent to the console **Actual:** All three lines are sent to the console: ``` > # 1 > # 2 > x <-3 ```