Hi Doom Emacs Community!
Suppose I have the following code:
import pandas as pd
data = {"calories": [420, 380, 390], "duration": [50, 40, 45]}
df = pd.DataFrame(data)
If I put my cursor (in insert mode) infront of df
, hit SHIFT End
, then comment out the highlighted line with M-;
, I’m left with the line totally commented and the cursor at the end of the line.
If I then hit ENTER
, the new line that appears underneath begins with a comment character. How would I go about disabling this so that the new line does not contain a comment character and stays in insert mode?
System information
Loading data dump...