diakonos 0.8.11 → 0.9.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG +439 -0
- data/LICENCE.md +675 -0
- data/bin/diakonos +6 -0
- data/diakonos-256-colour.conf +220 -0
- data/diakonos.conf +1802 -0
- data/help/about-help.dhf +31 -0
- data/help/clipboard.dhf +45 -0
- data/help/close-file.dhf +6 -0
- data/help/code-block-navigation.dhf +16 -0
- data/help/column-markers.dhf +15 -0
- data/help/config.dhf +69 -0
- data/help/cursor-stack.dhf +19 -0
- data/help/delete.dhf +41 -0
- data/help/extensions.dhf +125 -0
- data/help/file-type.dhf +24 -0
- data/help/key-mapping.dhf +127 -0
- data/help/line-numbers.dhf +22 -0
- data/help/macros.dhf +27 -0
- data/help/new-file.dhf +6 -0
- data/help/open-file.dhf +21 -0
- data/help/quit.dhf +7 -0
- data/help/resizing.dhf +19 -0
- data/help/ruby.dhf +17 -0
- data/help/save-file.dhf +10 -0
- data/help/scripting.dhf +92 -0
- data/help/search.dhf +103 -0
- data/help/shell.dhf +60 -0
- data/help/speed.dhf +23 -0
- data/help/support.dhf +15 -0
- data/help/switch-buffers.dhf +15 -0
- data/help/tabs.dhf +36 -0
- data/help/undo.dhf +9 -0
- data/help/uninstall.dhf +18 -0
- data/help/welcome.dhf +32 -0
- data/help/word-wrap.dhf +17 -0
- data/lib/diakonos/about.rb +70 -0
- data/lib/diakonos/bookmark.rb +46 -0
- data/lib/diakonos/buffer/bookmarking.rb +47 -0
- data/lib/diakonos/buffer/cursor.rb +335 -0
- data/lib/diakonos/buffer/delete.rb +170 -0
- data/lib/diakonos/buffer/display.rb +362 -0
- data/lib/diakonos/buffer/file.rb +157 -0
- data/lib/diakonos/buffer/indentation.rb +175 -0
- data/lib/diakonos/buffer/searching.rb +552 -0
- data/lib/diakonos/buffer/selection.rb +360 -0
- data/lib/diakonos/buffer/undo.rb +73 -0
- data/lib/diakonos/buffer-hash.rb +60 -0
- data/lib/diakonos/buffer-management.rb +59 -0
- data/lib/diakonos/buffer.rb +698 -0
- data/lib/diakonos/clipboard-klipper-dbus.rb +62 -0
- data/lib/diakonos/clipboard-klipper.rb +62 -0
- data/lib/diakonos/clipboard-osx.rb +59 -0
- data/lib/diakonos/clipboard-xclip.rb +60 -0
- data/lib/diakonos/clipboard.rb +47 -0
- data/lib/diakonos/config-file.rb +67 -0
- data/lib/diakonos/config.rb +382 -0
- data/lib/diakonos/core-ext/enumerable.rb +15 -0
- data/lib/diakonos/core-ext/hash.rb +60 -0
- data/lib/diakonos/core-ext/object.rb +6 -0
- data/lib/diakonos/core-ext/regexp.rb +6 -0
- data/lib/diakonos/core-ext/string.rb +122 -0
- data/lib/diakonos/ctag.rb +28 -0
- data/lib/diakonos/cursor.rb +27 -0
- data/lib/diakonos/display/format.rb +75 -0
- data/lib/diakonos/display.rb +336 -0
- data/lib/diakonos/extension-set.rb +49 -0
- data/lib/diakonos/extension.rb +34 -0
- data/lib/diakonos/finding.rb +40 -0
- data/lib/diakonos/functions/basics.rb +34 -0
- data/lib/diakonos/functions/bookmarking.rb +61 -0
- data/lib/diakonos/functions/buffers.rb +491 -0
- data/lib/diakonos/functions/clipboard.rb +70 -0
- data/lib/diakonos/functions/cursor.rb +264 -0
- data/lib/diakonos/functions/grepping.rb +83 -0
- data/lib/diakonos/functions/indentation.rb +71 -0
- data/lib/diakonos/functions/readline.rb +93 -0
- data/lib/diakonos/functions/search.rb +179 -0
- data/lib/diakonos/functions/selection.rb +98 -0
- data/lib/diakonos/functions/sessions.rb +78 -0
- data/lib/diakonos/functions/shell.rb +250 -0
- data/lib/diakonos/functions/tags.rb +65 -0
- data/lib/diakonos/functions/text-manipulation.rb +196 -0
- data/lib/diakonos/functions-deprecated.rb +77 -0
- data/lib/diakonos/functions.rb +292 -0
- data/lib/diakonos/grep.rb +98 -0
- data/lib/diakonos/help.rb +47 -0
- data/lib/diakonos/hooks.rb +13 -0
- data/lib/diakonos/installation.rb +19 -0
- data/lib/diakonos/interaction-handler.rb +216 -0
- data/lib/diakonos/interaction.rb +52 -0
- data/lib/diakonos/key-map.rb +62 -0
- data/lib/diakonos/keying.rb +442 -0
- data/lib/diakonos/line-mover.rb +42 -0
- data/lib/diakonos/list.rb +59 -0
- data/lib/diakonos/logging.rb +27 -0
- data/lib/diakonos/mode.rb +17 -0
- data/lib/diakonos/mouse.rb +18 -0
- data/lib/diakonos/number-fitter.rb +11 -0
- data/lib/diakonos/range.rb +31 -0
- data/lib/diakonos/readline/functions.rb +82 -0
- data/lib/diakonos/readline.rb +223 -0
- data/lib/diakonos/search.rb +58 -0
- data/lib/diakonos/sessions.rb +257 -0
- data/lib/diakonos/sized-array.rb +48 -0
- data/lib/diakonos/text-mark.rb +19 -0
- data/lib/diakonos/vendor/fuzzy_file_finder.rb +386 -0
- data/lib/diakonos/version.rb +25 -0
- data/lib/diakonos/window.rb +43 -0
- data/lib/diakonos.rb +592 -0
- metadata +160 -68
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 9124da7083b3827e1bed0f21f3cc4128b0ec8fb230dc0d4f0110c6eb2d065c25
|
4
|
+
data.tar.gz: 21015d0f4741458b7a29fbb31aa4b540cd72a76016ad6182915bfb02c3c6b513
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: ab053642dfc44bd02868ebe558e3981710b441ba0702177e53cd8f3b9bdab80692ee08652ab2c8e0b4e88a720a60f02f4c8fa38f8ef8f842c23ad9490b1dc717
|
7
|
+
data.tar.gz: cb423f02fd99dcf544eaff9f0205efb52a05ff4f085a5336d855d2d97e4c6225b238c4c456497e11f64126edae94871e1088270e2eb478e7dfd04d6472beafa5
|
data/CHANGELOG
ADDED
@@ -0,0 +1,439 @@
|
|
1
|
+
Diakonos Changelog
|
2
|
+
------------------
|
3
|
+
|
4
|
+
0.9.9
|
5
|
+
|
6
|
+
- List main culprits (directories) when fuzzy file finder encounters too many files
|
7
|
+
- Add support for extension configuration settings
|
8
|
+
- Make compatible with Ruby 3.2 (re: File.exists?)
|
9
|
+
|
10
|
+
0.9.8
|
11
|
+
|
12
|
+
- Handle symlink cycles when fuzzy file finding (file open)
|
13
|
+
- Fix language switch display bug
|
14
|
+
- Made Diakonos installable via gem
|
15
|
+
|
16
|
+
0.9.7
|
17
|
+
- Added ability to move lines up or down.
|
18
|
+
- Made compatible with Ruby 2.4.0.
|
19
|
+
- Handle closure of last buffer.
|
20
|
+
- Improve efficiency of fuzzy file find.
|
21
|
+
|
22
|
+
0.9.6
|
23
|
+
- Added Vue.js webpack syntax highlighting.
|
24
|
+
- Uninstallation no longer requires curses library.
|
25
|
+
|
26
|
+
0.9.5
|
27
|
+
- Added support for OSX clipboard.
|
28
|
+
- Fixed inability to use space when fuzzy file finding.
|
29
|
+
|
30
|
+
0.9.4
|
31
|
+
- Searching within a selection now highlights only within selection, and reports only the number of matches in the selection.
|
32
|
+
- Can now replace all within selection.
|
33
|
+
- Basic mouse support added.
|
34
|
+
- Indentation performance vastly improved.
|
35
|
+
- Some indentation bugs fixed.
|
36
|
+
- lang.languagename.indent.triggers added.
|
37
|
+
- For languages with comment closers, don't duplicate closers.
|
38
|
+
|
39
|
+
0.9.3
|
40
|
+
|
41
|
+
- Ruby 2.0 or higher now required.
|
42
|
+
- Tab completion of paths now uses session dir.
|
43
|
+
- save_backup_files setting (default false).
|
44
|
+
- Slightly improve render speed of some highlighted languages.
|
45
|
+
- Fuzzy file find no longer active when current input line is an absolute path (performance improvement).
|
46
|
+
|
47
|
+
0.9.2
|
48
|
+
|
49
|
+
- Fixed stale session bugs.
|
50
|
+
- Ruby 2.0.0 compatibility.
|
51
|
+
- colour.background setting.
|
52
|
+
- Fuzzy file find: Listing now sorted alphabetically.
|
53
|
+
- Now use by default the terminal's current/default background colour, including possible transparency.
|
54
|
+
- Support selection by Shift key with cursor movement.
|
55
|
+
|
56
|
+
0.9.1
|
57
|
+
|
58
|
+
- Added PKGBUILD to bash filemask.
|
59
|
+
- Fixed -m switch (open matching files).
|
60
|
+
- Fixed breakage of grepping through all buffers when some buffers are unnamed.
|
61
|
+
- Fixed bug that prevented type_character from working in macros.
|
62
|
+
- Fixed open_file bug caused by empty input.
|
63
|
+
- Fixed several display bugs.
|
64
|
+
- Added fuzzy_file_find.recursive option (default true).
|
65
|
+
- Fixed fuzzy_file_find.max_files.
|
66
|
+
- Improved efficiency of fuzzy file finder.
|
67
|
+
- Various updates to default syntax highlighting.
|
68
|
+
|
69
|
+
0.9.0
|
70
|
+
|
71
|
+
- Added partial UTF-8 support (only characters the same width as US-ASCII).
|
72
|
+
- Some bug fixes.
|
73
|
+
|
74
|
+
0.8.15
|
75
|
+
|
76
|
+
- Introduced open_as_first_buffer setting (default false).
|
77
|
+
- Now shows number of matches found after searching.
|
78
|
+
- Now shows number of replacements made.
|
79
|
+
- Now switches to previous buffer when switching to the current buffer by number.
|
80
|
+
- Last search and readline histories are now saved to sessions.
|
81
|
+
- Added delete_from function.
|
82
|
+
- Added key.after configuration directive for history-sensitive key mapping.
|
83
|
+
- Added select_word function. Mapped to <Ctrl-space, Ctrl-space> by default.
|
84
|
+
- Added select_word_another function. Mapped to <Ctrl-space> after select_word.
|
85
|
+
- Added search for word, mapped to <Ctrl-Alt-F> by default.
|
86
|
+
- Undo now opens any just-closed file.
|
87
|
+
- Fixed find_again behaviour for buffers without search history.
|
88
|
+
|
89
|
+
0.8.14
|
90
|
+
|
91
|
+
- comment_out now skips blank lines.
|
92
|
+
- Added renumber_buffer function. Default <Ctrl-B, number>.
|
93
|
+
- Can now configure fuzzy_file_find.ignore globs and fuzzy_file_find.max_files.
|
94
|
+
- go_to_char and go_to_char_previous now support an optional :after argument.
|
95
|
+
- delete_to_and_from now supports an optional :inclusive argument.
|
96
|
+
- More effecient marking of undo points when pasting external text or typing fast.
|
97
|
+
- Added more info about config files in About page.
|
98
|
+
- Display-related bug fixes and improvements.
|
99
|
+
- Ruby 1.9.2 is now the minimum Ruby version required for Diakonos.
|
100
|
+
|
101
|
+
0.8.13
|
102
|
+
|
103
|
+
Contributors: Pistos
|
104
|
+
|
105
|
+
- Added different_file argument to cursor_return.
|
106
|
+
- Remapped different-file cursor_return to <Alt-`> and <Alt-Shift-`>.
|
107
|
+
- Added KDE4 Klipper support (via dbus).
|
108
|
+
- Now automatically jumps to first merge conflict (if any) on startup.
|
109
|
+
- Added find_clip function.
|
110
|
+
- Now switches to existing buffer when trying to open a file that is already loaded.
|
111
|
+
- Now supports more formats for opening files at specific line numbers.
|
112
|
+
- Added keys to switch to buffers 10 through 19. <Alt-0, Alt-0> through <Alt-0, Alt-9>.
|
113
|
+
- Numerous minor fixes and improvements.
|
114
|
+
|
115
|
+
0.8.12
|
116
|
+
|
117
|
+
Contributors: Pistos
|
118
|
+
|
119
|
+
- Refactored keying system.
|
120
|
+
- Introduced keying modes.
|
121
|
+
- Ruby version now enforced, both at installation and run time.
|
122
|
+
- Input line can now scroll if input is longer than screen width.
|
123
|
+
- Added support for session completion in zsh and bash.
|
124
|
+
- Added select_line.
|
125
|
+
- Added select_wrapping_block (default key: Alt-space).
|
126
|
+
- Searching is now restricted to the selected text, if any.
|
127
|
+
- Added view.non_search_area.format.
|
128
|
+
- Fixed cursor stack.
|
129
|
+
- Cursor stack is now global (cross-buffer).
|
130
|
+
- Simplified switch_to_next_buffer and switch_to_prev_buffer; no more history.
|
131
|
+
- Added chdir function.
|
132
|
+
- Various refactorings.
|
133
|
+
- Various bug fixes.
|
134
|
+
|
135
|
+
0.8.11
|
136
|
+
|
137
|
+
Contributors: Pistos, dominikh
|
138
|
+
|
139
|
+
- Added join_lines_upward (Alt-Shift-J).
|
140
|
+
- Added one-key selection in buffer list.
|
141
|
+
- Added support for single line indentation.
|
142
|
+
- Added extension system.
|
143
|
+
- Added surround_selection and related functions.
|
144
|
+
- Added "about" page.
|
145
|
+
- Various bug fixes and refactorings.
|
146
|
+
|
147
|
+
0.8.10
|
148
|
+
|
149
|
+
Contributors: Pistos, dominikh
|
150
|
+
|
151
|
+
- Ruby version 1.9+ now required. (Ruby 1.8 support dropped)
|
152
|
+
- Added go_to_char (Alt-N).
|
153
|
+
- Added go_to_char_previous (Alt-P).
|
154
|
+
- shell command now shows executed command on interaction line.
|
155
|
+
- shell command is now interruptible.
|
156
|
+
- Klipper synchronization now a single setting (clipboard.external klipper).
|
157
|
+
- Added xclip support.
|
158
|
+
- Cursor and viewport positions now saved in and restored from sessions.
|
159
|
+
- Current buffer number now saved in sessions.
|
160
|
+
- Fixed context line.
|
161
|
+
- Textual indication of no shell results now given.
|
162
|
+
- Added basic pair (bracket) highlighting.
|
163
|
+
- Added go_to_pair_match (Alt-Shift-[).
|
164
|
+
- Fixed chmodding in installer.
|
165
|
+
- Undo and redo now actually compare file contents to set "modified" flag.
|
166
|
+
- Added support for a special 'all' language, whose formats apply no matter the current language.
|
167
|
+
- Added dynamic prefix expansion (Alt-E).
|
168
|
+
|
169
|
+
0.8.9
|
170
|
+
|
171
|
+
Contributors: Pistos, Decklin Foster
|
172
|
+
|
173
|
+
- Put interaction timer only on first stale session prompt, not any after that.
|
174
|
+
- Changed all function names from camelCase to snake_case.
|
175
|
+
- Added --help-dir switch to installer.
|
176
|
+
- Fixed some issues with installer.
|
177
|
+
- Changed delete_to_and_from to always assume given character is the left side character when matching pairs.
|
178
|
+
- Fixed a line number display bug.
|
179
|
+
- X windows pasting handled much better now.
|
180
|
+
- Numerous internal refactorings and reorganizations.
|
181
|
+
|
182
|
+
0.8.8
|
183
|
+
|
184
|
+
- New installation and uninstallation method: tarball + install.rb.
|
185
|
+
- Added configuration setting inheritance.
|
186
|
+
- Added block selection mode (Alt-Shift-M B; Alt-Shift-M N).
|
187
|
+
- Added line numbering settings.
|
188
|
+
- Added spawn function.
|
189
|
+
- Added go_block_previous, go_block_next (Ctrl-PageUp, Ctrl-PageDown).
|
190
|
+
- Added go_block_outer, go_block_inner (Alt-PageUp, Alt-PageDown).
|
191
|
+
- "Remove word" functionality (Ctrl-W) added to readline.
|
192
|
+
- Added find.show_context_after setting.
|
193
|
+
- Added view.column_markers.
|
194
|
+
- Added lang.____.indent.not_indented setting.
|
195
|
+
- Introduced $d shell variable: current buffer's directory.
|
196
|
+
- $f and $d now expand to absolute paths.
|
197
|
+
- delete_to and delete_to_and_from can now operate over multiple lines.
|
198
|
+
- delete_to_and_from can now delete between matching brackets.
|
199
|
+
- Added git diff (F9).
|
200
|
+
- Ruby 1.9 support smoothed out. Ruby 1.8 support being deprecated.
|
201
|
+
- Support for non-ASCII encodings tentatively confirmed.
|
202
|
+
- Several bugs fixed.
|
203
|
+
- Help files updated.
|
204
|
+
|
205
|
+
0.8.7
|
206
|
+
|
207
|
+
- MRU buffer history added.
|
208
|
+
- strip_trailing_whitespace_on_save setting added.
|
209
|
+
- Sessions (named and unnamed) added.
|
210
|
+
- grep as you type added.
|
211
|
+
- delete_to added.
|
212
|
+
- delete_to_and_from added.
|
213
|
+
- find.return_on_abort setting added.
|
214
|
+
- Makefile config added.
|
215
|
+
- Markdown config added.
|
216
|
+
- Sass config added.
|
217
|
+
- Now including custom.conf from default diakonos.conf.
|
218
|
+
- Help files updated.
|
219
|
+
- Some Ruby 1.9 compatibility introduced.
|
220
|
+
- Lots of code refactoring done.
|
221
|
+
- Numerous little adjustments and fixes made.
|
222
|
+
|
223
|
+
0.8.6
|
224
|
+
|
225
|
+
- Find-as-you-type added.
|
226
|
+
- Help system added.
|
227
|
+
- print_mapped_function added.
|
228
|
+
- User-definable status line variables added.
|
229
|
+
- :after_open and :after_buffer_switch hooks added.
|
230
|
+
- Sample script for git branch status variable added.
|
231
|
+
- comment_out and uncomment functions added.
|
232
|
+
- comment_string and comment_close_string settings added.
|
233
|
+
- Added -m (--open-matching) command line argument.
|
234
|
+
- wrap_paragraph function and wrap_margin setting added for hard wrapping text.
|
235
|
+
- columnize function and column_delimiter setting added.
|
236
|
+
- Numerous small fixes, adjustments and refactorings.
|
237
|
+
|
238
|
+
0.8.5
|
239
|
+
|
240
|
+
- Added 256 colour support.
|
241
|
+
- Added support for opening files with "filepath:linenumber" syntax.
|
242
|
+
- Added ability to put %_ in a code closer as the place to position the cursor.
|
243
|
+
- Code closers can now contain newlines.
|
244
|
+
- Now closer text is parsed-indented by default.
|
245
|
+
- Added copy_selection_to_klipper.
|
246
|
+
- Added cut_selection_to_klipper.
|
247
|
+
- Added paste_from_klipper.
|
248
|
+
- Added delete_and_store_line_to_klipper.
|
249
|
+
- Added delete_to_EOL_to_klipper.
|
250
|
+
- Added delete_line_to_klipper.
|
251
|
+
- Added support for regexp match placeholders (\1, \2, etc.) in findAndReplace.
|
252
|
+
- Added $k shell command variable for klipper contents.
|
253
|
+
- Added eol_behaviour setting.
|
254
|
+
- Various minor bug fixes.
|
255
|
+
- Changed to MIT licence.
|
256
|
+
|
257
|
+
0.8.4
|
258
|
+
|
259
|
+
- Added joinLines function.
|
260
|
+
- Added "yes and (s)top" as a find-and-replace option.
|
261
|
+
- Added '-h' to be synonymous with '--help'.
|
262
|
+
- Added "Ctrl-Q to quit" to opening message.
|
263
|
+
- Added close_code feature.
|
264
|
+
- Added list selection.
|
265
|
+
- Added buffer selection.
|
266
|
+
- Added delete_newline_on_delete_to_eol option.
|
267
|
+
- Added select_block command.
|
268
|
+
- Slight (8%) display performance improvement.
|
269
|
+
- Moved source code from svn to github.com.
|
270
|
+
|
271
|
+
0.8.3
|
272
|
+
|
273
|
+
- Extended ASCII characters (128 to 254) are now typeable.
|
274
|
+
- Added elsif as a Ruby unindenter.
|
275
|
+
- Significant internal refactoring.
|
276
|
+
- First working rubygem.
|
277
|
+
- Added HAML syntax highlighting.
|
278
|
+
- Configuration can now be downloaded from the Internet if missing.
|
279
|
+
- Updated README and changed setup.rb installation method.
|
280
|
+
|
281
|
+
0.8.2
|
282
|
+
|
283
|
+
- Added ability to use ';' in keychains.
|
284
|
+
- Added the printKeychain command.
|
285
|
+
- Augmented default conf to include some KDE 3.5 konsole keychains for common keys.
|
286
|
+
- Added use_magic_file setting; default to off.
|
287
|
+
- Added a clipboard/selected diff keybinding.
|
288
|
+
|
289
|
+
0.8.1
|
290
|
+
|
291
|
+
- Added choice prompt iteration.
|
292
|
+
- Added a cursor stack for jumping back and forth between recently visited locations in the buffer.
|
293
|
+
- Introduced cursorReturn command (to move through the cursor stack).
|
294
|
+
- replaceAll now sets modified flag.
|
295
|
+
- Speed of many multi-line operations improved.
|
296
|
+
- Fixed parsedIndent logic in cases of adjacent indenter and unindenter.
|
297
|
+
- goToLine command now supports a column argument.
|
298
|
+
- goToLine command's line and column argument are now both optional.
|
299
|
+
- goToLine also takes a +/- number of lines argument.
|
300
|
+
- Added case sensitivity parameter to find command; defaults to case-insensitive.
|
301
|
+
- Added operateOnString, operateOnLines, operateOnEachLine.
|
302
|
+
|
303
|
+
0.8.0
|
304
|
+
|
305
|
+
- Changed seek behaviour to use regexp group indexes.
|
306
|
+
- Changed "word seek" in configuration file to seek both word beginnings and word endings.
|
307
|
+
- Added settings interaction.blink_string, interaction.blink_duration, interaction.choice_delay.
|
308
|
+
- Choice prompt no longer coerces invalid choices.
|
309
|
+
- Choice prompt now requires a valid choice if no default given.
|
310
|
+
- Default choice removed from critical choices.
|
311
|
+
- Critical choices now ignore user input for interaction.choice_delay seconds.
|
312
|
+
- Added hooks.
|
313
|
+
- Added toggleSelection command.
|
314
|
+
- Added lang.*.indent.using_tabs.
|
315
|
+
- Fixed some indentation and tab-related bugs.
|
316
|
+
- Added YAML syntax highlighting.
|
317
|
+
- Refactored lots of code and began using unit tests.
|
318
|
+
- Minor default conf additions and modifications.
|
319
|
+
- Added fstab definitions to default conf.
|
320
|
+
- Diff now shown before revert prompt.
|
321
|
+
- Bang line must start with #! to be considered as a bang line (re: bangmasks).
|
322
|
+
- Added a collapseWhitespace command.
|
323
|
+
|
324
|
+
0.7.9
|
325
|
+
|
326
|
+
- Changed seek behaviour to not remember last position, but use current cursor
|
327
|
+
position instead.
|
328
|
+
- File is now checked for external modifications, prompting for load.
|
329
|
+
- Added -e, --execute option which eval's Ruby code (including Diakonos commands) after startup.
|
330
|
+
- Paging up and down now respects the y cursor margin.
|
331
|
+
- Paging up and down now keeps cursor at same screen coordinates.
|
332
|
+
- Settings can now be altered for the duration of the editing session.
|
333
|
+
(new commands: changeSessionSetting, toggleSessionSetting)
|
334
|
+
|
335
|
+
0.7.8
|
336
|
+
|
337
|
+
- Included package.rb and setup.rb for installation.
|
338
|
+
- Now looks for conf in more directories.
|
339
|
+
- Updated README.
|
340
|
+
- Added pasteShellResult function.
|
341
|
+
- Added $c shell variable: file containing clipboard contents.
|
342
|
+
- Added $s shell variable: file containing selected text.
|
343
|
+
- Fixed buffer switching to use a proper stack.
|
344
|
+
- Added input line history.
|
345
|
+
- Added Ctrl-K to clear input line.
|
346
|
+
|
347
|
+
0.7.7
|
348
|
+
|
349
|
+
- Fixed various find-related bugs.
|
350
|
+
- Added the command deleteAndStoreLine, which accumulates cut lines into
|
351
|
+
the same clipboard clip.
|
352
|
+
|
353
|
+
0.7.6
|
354
|
+
|
355
|
+
- Added some crontab highlighting to the default configuration file.
|
356
|
+
- Added "delete character" functionality to input line.
|
357
|
+
- Fixed backspace functionality of input line.
|
358
|
+
|
359
|
+
0.7.5
|
360
|
+
|
361
|
+
- Fixed bug which stopped Diakonos from completing refresh operations when
|
362
|
+
the context line is disabled.
|
363
|
+
- Added execute command, which executes a command in a subshell, but only
|
364
|
+
displays the return code (ignores stdout).
|
365
|
+
- Added a $F parameter for shell and execute commands. Space-separated list
|
366
|
+
of all current buffer filenames.
|
367
|
+
- Added a $i parameter for shell and execute commands. Substitute a string
|
368
|
+
obtained from user.
|
369
|
+
- /usr/share/diakonos is now checked for a config file, if
|
370
|
+
/usr/local/share/diakonos is not found.
|
371
|
+
- findAgain command now also retains memory across buffers, if needed.
|
372
|
+
|
373
|
+
0.7.4
|
374
|
+
|
375
|
+
- Prevent attempts to open non-files.
|
376
|
+
- Fixed saveFileAs bug which saved the wrong file when tab-completion was used
|
377
|
+
in the filename prompt.
|
378
|
+
- Fixed bug in tab completion: Directories are now completed properly and their
|
379
|
+
contents are listed.
|
380
|
+
|
381
|
+
0.7.3
|
382
|
+
|
383
|
+
- Fixed function-argument duplication bug which occurs after Help is consulted.
|
384
|
+
- Updated default conf file to include CSS and modifications to "conf" format
|
385
|
+
and the ruby format.
|
386
|
+
- Added display debug logging.
|
387
|
+
- Fixed off-screen drawing bug.
|
388
|
+
- Fixed on-startup drawing bug.
|
389
|
+
- Minor conf file additions and changes, including PHP and PL/pgSQL support.
|
390
|
+
|
391
|
+
0.7.2
|
392
|
+
|
393
|
+
- Fixed a drawing bug to do with long lines and screens wider than 80
|
394
|
+
columns.
|
395
|
+
- Added support for specifying any numeric keycode as a keystroke.
|
396
|
+
- Added a suspend command, to suspend the Diakonos process/job to background
|
397
|
+
and return to the shell.
|
398
|
+
- Altered drawing code a bit re: the shell and suspend commands.
|
399
|
+
- Fixed "view.jump.* 0" bug.
|
400
|
+
- Fixed copy/cut bug for selections starting or ending in columns besides
|
401
|
+
the left-most column.
|
402
|
+
|
403
|
+
0.7.1
|
404
|
+
|
405
|
+
- The openFile command now uses /usr/bin/file (if available) to check if the
|
406
|
+
file is readable (text), prompting to confirm open if it isn't.
|
407
|
+
- Fixed popTag bug where popping from an empty stack caused an exception.
|
408
|
+
- The seek command now no longer (incorrectly) cancels text selection.
|
409
|
+
- Drawing bugs fixed (to do with illegal off-screen drawing).
|
410
|
+
- Added the ability to use \n in searches, to match across lines.
|
411
|
+
|
412
|
+
0.7.0
|
413
|
+
|
414
|
+
- Adjusted buffer management system so that, internally, absolute file paths
|
415
|
+
are used.
|
416
|
+
- Added limited (line-number-based) ctags support. Commands: goToTag,
|
417
|
+
goToTagUnderCursor, popTag.
|
418
|
+
- Fixed revert command bug.
|
419
|
+
- Added an evaluate command, which lets you run any Diakonos command.
|
420
|
+
- Fixed display bug where Diakonos errors (Ruby exceptions) would ruin the
|
421
|
+
curses display.
|
422
|
+
- Malformed regular expressions given for regexp searching are now searched
|
423
|
+
for as literal text, instead of just throwing an error.
|
424
|
+
- Keychains that have no assignment are now shown in full on the interaction
|
425
|
+
line.
|
426
|
+
- Error message for some caught exceptions now includes a listing of probable
|
427
|
+
causes.
|
428
|
+
|
429
|
+
0.6.13
|
430
|
+
|
431
|
+
- Fixed the bug where searching backwards from the start of a line will cause
|
432
|
+
the search to start from the end of the line, instead of from the end of the
|
433
|
+
next line up.
|
434
|
+
- Added a "seek" command, which is a sort of silent find. Used for
|
435
|
+
implementing features like go to next word and previous word.
|
436
|
+
- Adjusted default conf file to include alternate ANSI sequences for function
|
437
|
+
keys.
|
438
|
+
- Context line truncation now omits the more proximate code, not the less
|
439
|
+
proximate code.
|