Adding new stuff
This commit is contained in:
parent
93ceb8fa0a
commit
f84d7183aa
1580 changed files with 205558 additions and 0 deletions
17
.viktor/bundle/python-mode/autoload/pymode/virtualenv.vim
Normal file
17
.viktor/bundle/python-mode/autoload/pymode/virtualenv.vim
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
" Support virtualenv
|
||||
"
|
||||
PymodePython from pymode.virtualenv import enable_virtualenv
|
||||
|
||||
fun! pymode#virtualenv#init() "{{{
|
||||
if !g:pymode_virtualenv || g:pymode_virtualenv_path == ""
|
||||
return
|
||||
endif
|
||||
|
||||
PymodePython enable_virtualenv()
|
||||
|
||||
endfunction "}}}
|
||||
|
||||
fun! pymode#virtualenv#activate(path) "{{{
|
||||
let g:pymode_virtualenv_path = a:path
|
||||
call pymode#virtualenv#init()
|
||||
endfunction "}}}
|
||||
Loading…
Add table
Add a link
Reference in a new issue