diakonos 0.8.11 → 0.9.8

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