removed F9 for running python files from the vimrc file. it is still in the python config inside the vim dir

This commit is contained in:
Stefan Friese 2024-07-05 17:18:29 +02:00
parent ced766a971
commit 0d1b8c875a
1 changed files with 0 additions and 10 deletions

View File

@ -78,15 +78,6 @@ command! MakeTags !ctags -R .
set autochdir
set tags=tags;
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"
" Execute Python Scripts
" Press F9 to run Python script
"
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
autocmd FileType python map <buffer> <F9> :w<CR>:exec '!python3' shellescape(@%, 1)<CR>
autocmd FileType python imap <buffer> <F9> <esc>:w<CR>:exec '!python3' shellescape(@%, 1)<CR>
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
"
" File browsing through a tree on the left side
@ -283,7 +274,6 @@ set completeopt+=longest,menu,menuone,preview,noselect,noinsert
" undotree
"
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
nnoremap <F5> :UndotreeToggle<CR>
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""