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:
parent
ced766a971
commit
0d1b8c875a
10
vim/.vimrc
10
vim/.vimrc
|
@ -78,15 +78,6 @@ command! MakeTags !ctags -R .
|
||||||
set autochdir
|
set autochdir
|
||||||
set tags=tags;
|
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
|
" File browsing through a tree on the left side
|
||||||
|
@ -283,7 +274,6 @@ set completeopt+=longest,menu,menuone,preview,noselect,noinsert
|
||||||
" undotree
|
" undotree
|
||||||
"
|
"
|
||||||
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
|
|
||||||
nnoremap <F5> :UndotreeToggle<CR>
|
nnoremap <F5> :UndotreeToggle<CR>
|
||||||
|
|
||||||
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
|
|
Loading…
Reference in New Issue