914
contributi
m (→Eseguire Python da Vim: commento) |
|||
Riga 69: | Riga 69: | ||
Aggiungendo nell'ormai famoso <code>/etc/vim/vimrc</code> | Aggiungendo nell'ormai famoso <code>/etc/vim/vimrc</code> | ||
<pre>map <f5> :w<CR>:!python %<CR></pre> | <pre> | ||
" Running Python by pushing F5 | |||
map <f5> :w<CR>:!python %<CR> | |||
</pre> | |||
oppure, nel caso in cui si usi Python 3, | oppure, nel caso in cui si usi Python 3, | ||
<pre>map <f5> :w<CR>:!python3 %<CR></pre> | <pre> | ||
" Running Python 3 by pushing F5 | |||
map <f5> :w<CR>:!python3 %<CR> | |||
</pre> | |||
alla pressione del tasto F5 verrà eseguito <code>python</code> (o <code>python3</code>) passando come parametro il file corrente (indicato da <code>'''%'''</code>). | alla pressione del tasto F5 verrà eseguito <code>python</code> (o <code>python3</code>) passando come parametro il file corrente (indicato da <code>'''%'''</code>). |
contributi