-
Notifications
You must be signed in to change notification settings - Fork 164
/
CHANGELOG
214 lines (127 loc) · 3.8 KB
/
CHANGELOG
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
CHANGELOG
=========
3.0.3: 2022-05-16
-----------------
- Implemented basic :s[ubstitute] command and various related fixes.
- Fixed license text in setup.py.
3.0.2: 2019-11-28
------------------
- Added missing dependency: 'six'.
3.0.1: 2019-11-28
------------------
- Upgrade to prompt_toolkit 3.0
2.0.24: 2019-01-27
------------------
- Improved the file explorer.
2.0.23: 2018-09-30
------------------
- Implemented "breakindent" option.
- Implemented "temporary navigation mode".
2.0.22: 2018-06-03
-----------------
- Small fix: don't include default input processors from prompt_toolkit.
2.0.1: 2018-06-02
-----------------
Upgrade to prompt_toolkit 2.0
Edit: By accident, this was uploaded as 2.0.21.
0.0.21: 2017-08-08
------------------
- Use load_key_bindings instead of KeyBindingManager (fixes compatibility with
latest prompt_toolkit 1.0)
0.0.20: 2016-10-16
-------------------
- Added support for inserting before/after visual block.
- Better Jedi integration for completion of Python files.
- Don't depend on ptpython code anymore.
Upgrade to prompt_toolkit==1.0.8
0.0.19: 2016-08-04
------------------
- Take output encoding ($LANG) into account in several places.
Upgrade to prompt_toolkit==1.0.4
0.0.18: 2016-05-09
------------------
Upgrade to ptpython==0.34.
0.0.17: 2016-05-05
-----------------
Upgrade to prompt_toolkit==1.0.0 and ptpython==0.32.
- Added colorcolumn, cursorcolumn and cursorline commands.
- Added cul,nocul,cuc,nocuc commands.
- Added tildeop command.
- Fixes bug in ~ expension in :e command.
0.0.16: 2016-03-14
-----------------
Upgrade to prompt_toolkit==0.60 and ptpython==0.31.
0.0.15: 2016-02-27
-----------------
Upgrade to prompt_toolkit==0.59 and ptpython==0.30.
0.0.14: 2016-02-24
-----------------
Upgrade to prompt_toolkit==0.58 and ptpython==0.29.
0.0.13: 2016-01-04
-----------------
Upgrade to prompt_toolkit==0.57 and ptpython==0.28.
0.0.12: 2016-01-03
-----------------
Upgrade to prompt_toolkit==0.56 and ptpython==0.27.
New features:
- Visual block selection type.
- Handle mouse events on tabs.
- Focus window on click.
- Show the current document in the titlebar.
Fixes:
- Make sure that 'pyvim -u ...' alsa works on Python 2.
0.0.11: 2015-10-29
-----------------
Upgrade to prompt_toolkit==0.54 and ptpython==0.25.
0.0.10: 2015-09-24
-----------------
Upgrade to prompt_toolkit==0.52 and ptpython==0.24.
0.0.9: 2015-09-24
-----------------
Upgrade to prompt_toolkit==0.51 and ptpython==0.23.
0.0.8: 2015-08-08
-----------------
Upgrade to prompt_toolkit==0.46 and ptpython==0.21.
0.0.7: 2015-06-30
-----------------
Upgrade to prompt_toolkit==0.45 and ptpython==0.20.
0.0.6: 2015-06-30
-----------------
Upgrade to prompt_toolkit==0.44 and ptpython==0.19.
New features:
- Added __main__: allow "python -m pyvim".
0.0.5: 2015-06-22
-----------------
Upgrade to prompt_toolkit==0.41 and ptpython==0.15.
0.0.4: 2015-05-31
-----------------
New features:
- Upgrade to prompt_toolkit==0.38:
Several new key bindings bug fixes and faster pasting.
0.0.3: 2015-05-07
-----------------
New features:
- shortcuts for split and vsplit.
- Page up/down key bindings.
- ControlW n/v key bindings for splitting windows.
- Custom I/O backends. (For opening of .gz files and http:// urls.)
- Implemented ControlE/ControlY/ControlD/ControlU for scrolling.
- Implemented scroll offset.
- Added :bd, :cq and :open
- Better handling of exclamation mark in commands.
Bug fixes:
- NameErrors in .pyvimrc example.
- ControlF shortcut.
- Solves :q issue.
- Fixed ControlT
0.0.2: 2015-04-26
-----------------
First public release:
- Working layouts: horizontal/vertical splits, tab pages, etc...
- Many commands + key bindings.
- Jedi and Pyflakes integration.
- Reading and writing of files.
- Many other stuff.
2015-01-25
----------
First working proof of concept.