forked from python-mode/python-mode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpymode.vim
More file actions
152 lines (101 loc) · 3.17 KB
/
pymode.vim
File metadata and controls
152 lines (101 loc) · 3.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
if pymode#Default('b:pymode', 1)
finish
endif
" Syntax highlight
if !pymode#Default('g:pymode_syntax', 1) || g:pymode_syntax
let python_highlight_all=1
endif
" Options {{{
" Python indent options
if !pymode#Default('g:pymode_options_indent', 1) || g:pymode_options_indent
setlocal cinwords=if,elif,else,for,while,try,except,finally,def,class
setlocal cindent
setlocal tabstop=4
setlocal softtabstop=4
setlocal shiftwidth=4
setlocal shiftround
setlocal smartindent
setlocal smarttab
setlocal expandtab
setlocal autoindent
endif
" Python fold options
if !pymode#Default('g:pymode_options_fold', 1) || g:pymode_options_fold
setlocal foldlevelstart=99
setlocal foldlevel=99
setlocal foldmethod=indent
endif
" Python other options
if !pymode#Default('g:pymode_options_other', 1) || g:pymode_options_other
setlocal complete+=t
setlocal formatoptions-=t
setlocal number
setlocal nowrap
setlocal textwidth=80
endif
" }}}
" Paths {{{
" Fix path for project
if g:pymode
py curpath = vim.eval('getcwd()')
py curpath in sys.path or sys.path.append(curpath)
endif
" Add virtualenv paths
if g:pymode_virtualenv && exists("$VIRTUAL_ENV")
call pymode#virtualenv#Activate()
endif
" }}}
" Documentation {{{
if g:pymode_doc
" DESC: Set commands
command! -buffer -nargs=1 Pydoc call pymode#doc#Show("<args>")
" DESC: Set keys
exe "nnoremap <silent> <buffer> " g:pymode_doc_key ":call pymode#doc#Show(expand('<cword>'))<CR>"
endif
" }}}
" Lint {{{
if g:pymode_lint
" DESC: Set commands
command! -buffer -nargs=0 PyLintToggle :call pymode#lint#Toggle()
command! -buffer -nargs=0 PyLintWindowToggle :call pymode#lint#ToggleWindow()
command! -buffer -nargs=0 PyLintCheckerToggle :call pymode#lint#ToggleChecker()
command! -buffer -nargs=0 PyLint :call pymode#lint#Check()
" DESC: Set autocommands
if g:pymode_lint_write
au BufWritePost <buffer> PyLint
endif
endif
" }}}
" Rope {{{
if g:pymode_rope
" DESC: Set keys
noremap <silent> <buffer> <C-c>g :RopeGotoDefinition<CR>
noremap <silent> <buffer> <C-c>d :RopeShowDoc<CR>
noremap <silent> <buffer> <C-c>f :RopeFindOccurrences<CR>
noremap <silent> <buffer> <C-c>m :emenu Rope.<TAB>
inoremap <silent> <buffer> <S-TAB> <C-R>=RopeLuckyAssistInsertMode()<CR>
let s:prascm = g:pymode_rope_always_show_complete_menu ? "<C-P>" : ""
exe "inoremap <silent> <buffer> <Nul> <C-R>=RopeCodeAssistInsertMode()<CR>" . s:prascm
exe "inoremap <silent> <buffer> <C-space> <C-R>=RopeCodeAssistInsertMode()<CR>" . s:prascm
endif
" }}}
" Execution {{{
if g:pymode_run
" DESC: Set commands
command! -buffer -nargs=0 Pyrun call pymode#run#Run()
" DESC: Set keys
exe "nnoremap <silent> <buffer> " g:pymode_run_key ":Pyrun<CR>"
endif
" }}}
" Breakpoints {{{
if g:pymode_breakpoint
" DESC: Set keys
exe "nnoremap <silent> <buffer> " g:pymode_breakpoint_key ":call pymode#breakpoint#Set(line('.'))<CR>"
endif
" }}}
" Utils {{{
if g:pymode_utils_whitespaces
au BufWritePre <buffer> :call setline(1,map(getline(1,"$"),'substitute(v:val,"\\s\\+$","","")'))
endif
" }}}
" vim: fdm=marker:fdl=0