1
1
Changelog
2
2
=========
3
3
4
+
5
+ ## TODO
6
+ -------
7
+ * Move changelog rst syntax to markdown
8
+ * pymode_rope: check disables
9
+ * When loading a file without a history, substituting a word (eg 'cw') moves
10
+ the cursor to position 0 (equivalent to 'cw' then '0l')
11
+ * Fixed on `917e484 `
12
+ * Inspect why files starting with:
13
+ ~~~~~~
14
+ def main():
15
+ pass
16
+
17
+
18
+ if __name__ == '__main__':
19
+ main()
20
+ ~~~~~~
21
+ do not get loaded.
22
+
23
+
24
+ ## 2017-07-xxx 0.9.5
25
+ --------------------
26
+ * pylama: migrated to submodule
27
+
28
+
29
+ ## 2017-07-11 0.9.4
30
+ --------------------
31
+ * pylama: fixed erratic behavior of `skip ` option causing unintended skipping
32
+ of lint checkers
33
+ * PEP257 requires `snowbalstemmer `: added as submodule
34
+ * Fixed handling of `g:pymode_lint_ignore ` and `g:pymode_lint_select `: from
35
+ strings to list
36
+ * Migrated modules from `pymode/libs ` to `submodules/ <https://github.com/fmv1992/python-mode/tree/develop/submodules >`__
37
+ * Rationale: no need to single handedly update each module; removes burden
38
+ from developers
39
+ * Improved folding accuracy
40
+ * Improved nested definitions folding
41
+ * Improved block delimiting
42
+
43
+
44
+ ## (changelog poorly maintained) 0.8.2
45
+ --------------------------------------
4
46
* Pylama updated to version 5.0.5
5
47
* Rope libs updated
6
48
* Add wdb to debugger list in breakpoint cmd
@@ -140,7 +182,7 @@ Changelog
140
182
--------------------
141
183
* Dont raise an exception when Logger has no message handler (c) nixon
142
184
* Improve performance of white space removal (c) Dave Smith
143
- * Improve ropemode support (c) s0undt3ch
185
+ * Improve ropemode support (c) s0undt3ch
144
186
* Add `g:pymode_updatetime ` option
145
187
* Update autopep8 to version 0.8.1
146
188
@@ -151,7 +193,7 @@ Changelog
151
193
152
194
## 2012-09-06 0.6.8
153
195
-------------------
154
- * Add PEP8 indentation ":help 'pymode_indent'"
196
+ * Add PEP8 indentation ":help 'pymode_indent'"
155
197
156
198
## 2012-08-15 0.6.7
157
199
-------------------
@@ -165,7 +207,7 @@ Changelog
165
207
* Fixed virtualenv support for windows users
166
208
* Added pymode modeline ':help PythonModeModeline'
167
209
* Added diagnostic tool ':call pymode#troubleshooting#Test()'
168
- * Added `PyLintAuto ` command ':help PyLintAuto'
210
+ * Added `PyLintAuto ` command ':help PyLintAuto'
169
211
* Code checking is async operation now
170
212
* More, more fast the pymode folding
171
213
* Repaired execution of python code
@@ -191,12 +233,12 @@ Changelog
191
233
192
234
## 2012-03-13 0.6.0
193
235
-------------------
194
- * Add 'pymode_lint_hold' option
236
+ * Add 'pymode_lint_hold' option
195
237
* Improve pymode loading speed
196
238
* Add pep8, mccabe lint checkers
197
239
* Now g:pymode_lint_checker can have many values
198
240
Ex. "pep8,pyflakes,mccabe"
199
- * Add 'pymode_lint_ignore' and 'pymode_lint_select' options
241
+ * Add 'pymode_lint_ignore' and 'pymode_lint_select' options
200
242
* Fix rope keys
201
243
* Fix python motion in visual mode
202
244
* Add folding 'pymode_folding'
@@ -258,7 +300,10 @@ Changelog
258
300
-------------------
259
301
* Enable all syntax highlighting
260
302
For old settings set in your vimrc:
261
- let g:pymode_syntax_builtin_objs = 0
303
+
304
+ ::
305
+
306
+ 2082d0b8fed7fff10b3f335cefc6a51dd25ee0b2 let g:pymode_syntax_builtin_objs = 2
262
307
let g:pymode_syntax_builtin_funcs = 0
263
308
264
309
* Change namespace of syntax variables