본문 바로가기

Research/Linux

directly run python code using vim



vim 에서 파이썬 스크립트 작성하다 F9 번 눌러서 바로 실행하기.

Edit .vimrc and add below code.

autocmd FileType python nnoremap <buffer> <F9> :exec '!python' shellescape(@%, 1)<cr>







'Research > Linux' 카테고리의 다른 글

glibc malloc understanding  (0) 2016.09.08
동적 메모리 관련  (0) 2016.09.06
When sidebar(unity) disappeared in Ubuntu  (0) 2016.05.31
root ssh 접속 차단  (0) 2015.08.04
명령어 치환. Command substitution  (0) 2015.06.01