8000 Merge branch 'release/0.7.0b' · python-mode/python-mode@4f4ecbd · GitHub
[go: up one dir, main page]

Skip to content

Commit 4f4ecbd

Browse files
committed
Merge branch 'release/0.7.0b'
2 parents efc6100 + 81d4dae commit 4f4ecbd

File tree

289 files changed

+20696
-5229
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

289 files changed

+20696
-5229
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
.vimrc
99
Gemfile.lock
1010
VimFlavor.lock
11+
_
1112
tags
1213
test.py
1314
todo.txt

AUTHORS

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,11 @@ Contributors:
77

88
* Alvin Francis (alvinfrancis);
99
* Anler Hp (ikame);
10+
* Anton Parkhomenko (chuwy);
11+
* Ashley Hewson (ashleyh);
1012
* Benjamin Ruston (bruston);
1113
* Boris Filippov (frenzykryger);
14+
* Daniel Hahler (blueyed)
1215
* David Vogt (winged);
1316
* Denis Kasak (dkasak);
1417
* Dirk Wallenstein (dirkwallenstein);
@@ -19,10 +22,11 @@ Contributors:
1922
* Kevin Deldycke (kdeldycke);
2023
* Lowe Thiderman (thiderman);
2124
* Martin Brochhaus (mbrochh);
22-
* Matthew Moses (mlmoses)
25+
* Matthew Moses (mlmoses);
2326
* Mohammed (mbadran);
2427
* Naoya Inada (naoina);
2528
* Pedro Algarvio (s0undt3ch);
29+
* Phillip Cloud (cpcloud);
2630
* Piet Delport (pjdelport);
2731
* Robert David Grant (bgrant);
2832
* Ronald Andreu Kaiser (cathoderay);

Changelog.rst

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,67 @@
11
Changelog
22
=========
33

4+
## 2013-12-?? 0.7.0b
5+
--------------------
6+
* Update indentation support;
7+
* Python3 support;
8+
* Removed pymode modeline support;
9+
* Disabled async code checking support;
10+
* Options changes:
11+
'pymode_doc_key' -> 'pymode_doc_bind'
12+
'pymode_run_key' -> 'pymode_run_bind'
13+
'pymode_breakpoint_key' -> 'pymode_breakpoint_bind'
14+
'pymode_breakpoint_template' -> 'pymode_breakpoint_cmd'
15+
'pymode_lint_write' -> 'pymode_lint_on_write'
16+
'pymode_lint_onfly' -> 'pymode_lint_on_fly'
17+
'pymode_lint_checker' -> 'pymode_lint_checkers'
18+
'pymode_lint_minheight' -> 'pymode_quickfix_minheight'
19+
'pymode_lint_maxheight' -> 'pymode_quickfix_maxheight'
20+
'pymode_rope_autocomplete_map' -> 'pymode_rope_completion_bind'
21+
'pymode_rope_enable_autoimport' -> 'pymode_rope_autoimport'
22+
23+
* Options removed:
24+
'pymode_lint_hold', 'pymode_lint_config', 'pymode_lint_jump',
25+
'pymode_lint_signs_always_visible', 'pymode_rope_extended_complete',
26+
'pymode_rope_auto_project', 'pymode_rope_autoimport_generate',
27+
'pymode_rope_autoimport_underlines', 'pymode_rope_codeassist_maxfixes',
28+
'pymode_rope_sorted_completions', 'pymode_rope_extended_complete',
29+
'pymode_rope_confirm_saving', 'pymode_rope_global_prefix',
30+
'pymode_rope_local_prefix', 'pymode_rope_vim_completion', 'pymode_rope_guess_project',
31+
'pymode_rope_goto_def_newwin', 'pymode_rope_always_show_complete_menu'
32+
33+
* Options added:
34+
'pymode_rope_regenerate_on_write', 'pymode_rope_completion', 'pymode_rope_complete_on_dot',
35+
'pymode_lint_sort'
36+
37+
* Commands added:
38+
'PymodeVirtualenv'
39+
40+
* Commands changed:
41+
'PyDoc' -> 'PymodeDoc'
42+
'Pyrun' -> 'PymodeRun'
43+
'PyLintToggle' -> 'PymodeLintToggle'
44+
'PyLint' -> 'PymodeLint'
45+
'PyLintAuto' -> 'PymodeLintAuto'
46+
'RopeOpenProject' -> 'PymodeRopeNewProject'
47+
'RopeUndo' -> 'PymodeRopeUndo'
48+
'RopeRedo' -> 'PymodeRopeRedo'
49+
'RopeRenameCurrentModule' -> 'PymodeRopeRenameModule'
50+
'RopeModuleToPackage' -> 'PymodeRopeModuleToPackage'
51+
'RopeGenerateAutoimportCache' -> 'PymodeRopeRegenerate'
52+
'RopeOrgamizeImports' -> 'PymodeRopeAutoImport'
53+
54+
* Commands removed:
55+
'PyLintCheckerToggle', 'RopeCloseProject', 'RopeProjectConfig',
56+
'RopeRename', 'RopeCreate<...>', 'RopeWriteProject', 'RopeRename',
57+
'RopeExtractVariable', 'RopeExtractMethod', 'RopeInline', 'RopeMove',
58+
'RopeRestructure', 'RopeUseFunction', 'RopeIntroduceFactory',
59+
'RopeChangeSignature', 'RopeMoveCurrentModule',
60+
'RopeGenerate<...>', 'RopeAnalizeModule', 'RopeAutoImport',
61+
62+
63+
## 2013-10-29 0.6.19
64+
--------------------
465
* Added `g:pymode_rope_autocomplete_map` option;
566
* Removed `g:pymode_rope_map_space` option;
667
* Added PEP257 checker;

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ clean:
44

55
.PHONY: test
66
test:
7+
bundle install
78
rake test
89

910
.PHONY: pylama

0 commit comments

Comments
 (0)
0