-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path0030 - python.vim.json
235 lines (235 loc) · 8.25 KB
/
0030 - python.vim.json
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
{
"script_id": "30",
"display_name": "python.vim",
"summary": "A set of menus/shortcuts to work with Python files",
"name": "python.vim",
"script_type": "utility",
"description": "Written by Mikael Berthe.\n\nThis script can be useful when editing Python scripts. It provides the following menus:\n- Select a block of lines with the same indentation\n- Select a function\n- Select a class\n- Go to previous/next class/function\n- Go to the beginning/end of a block\n- Comment/uncomment the selection\n- Jump to the last/next line with the same indent\n- Shift a block (left/right)\n- Creates list of classes and functions for easy code navigation\nVersion 1.8+ requires Vim 7, earlier versions require Vim 6",
"install_details": "Copy to the $VIMFILES/ftplugin directory. For more information, please read the beginning of the script...",
"versions": [
{
"url": "http://www.vim.org/scripts/download_script.php?src_id=9196",
"filename": "python_fn.vim",
"script_version": "1.13",
"date": "2008-08-29",
"vim_version": "7.0",
"author": {
"user_id": "10626",
"user_name": "jvfranklin",
"first_name": "Jon",
"last_name": "Franklin",
"email": "[email protected]",
"homepage": ""
},
"release_notes": "Fix for bug that prevented multi-line class and function definitions from showing up in the IM-Python menu. Patch provided by Branden Rolston."
},
{
"url": "http://www.vim.org/scripts/download_script.php?src_id=8704",
"filename": "python_fn.vim",
"script_version": "1.12",
"date": "2008-05-17",
"vim_version": "7.0",
"author": {
"user_id": "10626",
"user_name": "jvfranklin",
"first_name": "Jon",
"last_name": "Franklin",
"email": "[email protected]",
"homepage": ""
},
"release_notes": "* Changed to ftplugin and renamed to avoid collision with vim's ftplugin/python.vim. Patch provided by Christopher Lambacher\n* Fixed error opening python buffer with no classes or functions. Patch provided by Chris Farrow\n* Removed duplicate ]f key\n*Fixed block manipulation bugs due to collision on ]], [[ mappings. See menu for new mappings"
},
{
"url": "http://www.vim.org/scripts/download_script.php?src_id=6481",
"filename": "python.vim",
"script_version": "1.11",
"date": "2006-11-29",
"vim_version": "7.0",
"author": {
"user_id": "10626",
"user_name": "jvfranklin",
"first_name": "Jon",
"last_name": "Franklin",
"email": "[email protected]",
"homepage": ""
},
"release_notes": "Add shortcuts for all remaining menu options."
},
{
"url": "http://www.vim.org/scripts/download_script.php?src_id=6390",
"filename": "python.vim",
"script_version": "1.10",
"date": "2006-11-08",
"vim_version": "7.0",
"author": {
"user_id": "10626",
"user_name": "jvfranklin",
"first_name": "Jon",
"last_name": "Franklin",
"email": "[email protected]",
"homepage": ""
},
"release_notes": "Add shortcuts for commenting/uncommenting selections."
},
{
"url": "http://www.vim.org/scripts/download_script.php?src_id=6103",
"filename": "python.vim",
"script_version": "1.9",
"date": "2006-08-26",
"vim_version": "6.0",
"author": {
"user_id": "10626",
"user_name": "jvfranklin",
"first_name": "Jon",
"last_name": "Franklin",
"email": "[email protected]",
"homepage": ""
},
"release_notes": "Fixed bug in IM-Python menu where function and class names beginning with \"_\" were not included."
},
{
"url": "http://www.vim.org/scripts/download_script.php?src_id=6079",
"filename": "python.vim",
"script_version": "1.8",
"date": "2006-08-17",
"vim_version": "6.0",
"author": {
"user_id": "76",
"user_name": "mikael",
"first_name": "Mikael",
"last_name": "Berthe",
"email": "[email protected]",
"homepage": ""
},
"release_notes": "Applied a patch from Jon Franklin: IM-Python menu improvements.\nUpdated copyright and email address."
},
{
"url": "http://www.vim.org/scripts/download_script.php?src_id=2187",
"filename": "python.vim",
"script_version": "1.7",
"date": "2003-07-25",
"vim_version": "6.0",
"author": {
"user_id": "76",
"user_name": "mikael",
"first_name": "Mikael",
"last_name": "Berthe",
"email": "[email protected]",
"homepage": ""
},
"release_notes": "Use <Down> instead of 'j', so it should work when j is mapped."
},
{
"url": "http://www.vim.org/scripts/download_script.php?src_id=2071",
"filename": "python.vim",
"script_version": "1.6",
"date": "2003-06-12",
"vim_version": "6.0",
"author": {
"user_id": "76",
"user_name": "mikael",
"first_name": "Mikael",
"last_name": "Berthe",
"email": "[email protected]",
"homepage": ""
},
"release_notes": "Works better with folding... Many thanks to Guy L. Oliver!"
},
{
"url": "http://www.vim.org/scripts/download_script.php?src_id=1637",
"filename": "python.vim",
"script_version": "1.5",
"date": "2003-01-16",
"vim_version": "6.0",
"author": {
"user_id": "76",
"user_name": "mikael",
"first_name": "Mikael",
"last_name": "Berthe",
"email": "[email protected]",
"homepage": ""
},
"release_notes": "Same as 1.4, I just fixed a typo in the comments and my e-mail address..."
},
{
"url": "http://www.vim.org/scripts/download_script.php?src_id=155",
"filename": "python.vim",
"script_version": "1.4",
"date": "2001-09-05",
"vim_version": "6.0",
"author": {
"user_id": "76",
"user_name": "mikael",
"first_name": "Mikael",
"last_name": "Berthe",
"email": "[email protected]",
"homepage": ""
},
"release_notes": "Entry for Adam's IM-Python menu update in the main script menu; some other minor changes..."
},
{
"url": "http://www.vim.org/scripts/download_script.php?src_id=128",
"filename": "python.vim",
"script_version": "1.3",
"date": "2001-08-22",
"vim_version": "6.0",
"author": {
"user_id": "176",
"user_name": "Vonlia",
"first_name": "adam",
"last_name": "seyfarth",
"email": "[email protected]",
"homepage": ""
},
"release_notes": "I've added an IM-Python menu that holds the class definitions and function definitions."
},
{
"url": "http://www.vim.org/scripts/download_script.php?src_id=42",
"filename": "python.vim",
"script_version": "1.1",
"date": "2001-07-07",
"vim_version": "6.0",
"author": {
"user_id": "76",
"user_name": "mikael",
"first_name": "Mikael",
"last_name": "Berthe",
"email": "[email protected]",
"homepage": ""
},
"release_notes": "* Changed the name of the global variable\n* Added a new variable; one can choose not to select trailing comments"
},
{
"url": "http://www.vim.org/scripts/download_script.php?src_id=41",
"filename": "python.vim",
"script_version": "1.0",
"date": "2001-07-07",
"vim_version": "6.0",
"author": {
"user_id": "76",
"user_name": "mikael",
"first_name": "Mikael",
"last_name": "Berthe",
"email": "[email protected]",
"homepage": ""
},
"release_notes": "Initial upload"
},
{
"url": "http://www.vim.org/scripts/download_script.php?src_id=40",
"filename": "python.vim",
"script_version": "1.0",
"date": "2001-07-07",
"vim_version": "6.0",
"author": {
"user_id": "76",
"user_name": "mikael",
"first_name": "Mikael",
"last_name": "Berthe",
"email": "[email protected]",
"homepage": ""
},
"release_notes": "Initial upload"
}
]
}