In my .vimrc file I have a key binding for comments that insert double slashes (//) before a line
" the mappings below are for commenting blocks of text
:map <C-G> :s/^/\/\//<Esc><Esc>
:map <C-T> :s/\/\/// <Esc><Esc>
However when I'm editing Python scripts I want to change that to a # sign for comments
I have a Python.vim file in my .vim/ftdetect folder that also has settings for tabwidths, etc.
What is the code to override the keybindings if possible so I have Python use:
" the mappings below are for commenting blocks of text
:map <C-G> :s/^/#/<Esc><Esc>
:map <C-T> :s/#/ <Esc><Esc>