Class: KeyBindings

Inherits:
Object show all
Defined in:
lib/xiki/key_bindings.rb

Class Method Summary collapse

Class Method Details

.as_keysObject



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
# File 'lib/xiki/key_bindings.rb', line 19

def self.as_keys
  # A: as...
  # Use A prefix for: remembering, saving

  Keys.AA { Line.to_left }   # AA - beginning of line (A's default)
  Keys.as_bookmark { Bookmarks.save }   # remember bookmark
  Keys.as_clipboard { Clipboard.as_clipboard }   #
  #     Keys.as_directory { FileTree.copy_path }   # copy dir to clipboard from tree
  Keys.as_delete { Launcher.as_delete }   # copy dir to clipboard from tree
  Keys.as_everything { Clipboard.copy_everything }
  Keys.as_file { DiffLog.save }   # save (or, with prefix, save as)
  Keys.as_history { History.backup_file }   # creates backup
  Keys.as_indented { CodeTree.as_indented }
  Keys.as_job { Macros.record }   # start recording macro
  Keys.as_kill { Clipboard.cut(0); Location.as_spot('killed') }   # cut)
  Keys.as_line { Clipboard.as_line }
  Keys.as_menu { Menu.as_menu }
  Keys.as_nav { Notes.as_nav }
  Keys.as_open { Launcher.as_open }   # copy object / symbol at point
  Keys.as_paragraph { Clipboard.copy_paragraph }   # copy paragraph
  Keys.as_quick { Bookmarks.save :q }   # like AB but uses different temporary namespace
  Keys.as_rest { Clipboard.copy_paragraph(:rest => true) }
  Keys.as_spot { Location.as_spot }   # remember point in file
  Keys.as_todo { Notes.as_todo }
  Keys.as_update { Launcher.as_update }
  # U

  # TODO: make this be as_variable?
  # like:     Keys.as_name { Clipboard.copy }   # copies using key (prompted for)


  Keys.as_variable { Clipboard.copy }   # Copy to variable


  # Think of another key for backing it up?

  Keys.as_window { View.save }   # remember window configuration as name
  Keys.as_you { Clipboard.as_thing }   # copy object / symbol at point

  # Y
  # Z
  #Keys.A0 { Clipboard.copy("0") }   # As 0: copy as key "0"
  Keys.A1 { Clipboard.copy("1") }   # As 1
  Keys.A2 { Clipboard.copy("2") };  Keys.A3 { Clipboard.copy("3") };  Keys.A4 { Clipboard.copy("4") }
  Keys.A5 { Clipboard.copy("5") };  Keys.A6 { Clipboard.copy("6") };  Keys.A7 { Clipboard.copy("7") }
end

.do_keysObject



224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
# File 'lib/xiki/key_bindings.rb', line 224

def self.do_keys
  # D: do...
  # Use D prefix for: things that modify text or execute code

  #     Keys.D { insert "Apparently this is necessary to remap C-d" }
  Keys.DD { $el.delete_char $el.elvar.current_prefix_arg || 1 }   # DD - delete character (D's default)
  #     Keys.do_as_camelcase { Clipboard.do_as_camel_case }   # change word to camel case (LikeThat)
  Keys.do_as_execute { Console.do_as_execute }   # Run shell command on tree
  Keys.do_as_html { Firefox.do_as_html }
  Keys.do_as_browser { Firefox.run_block }
  Keys.do_as_javascript { Javascript.run }
  #     Keys.do_as_launched { Launcher.do_as_launched }
  #     Keys.do_as_php { Php.run }
  Keys.do_as_menu { Menu.do_as_menu }   # Grab item after '@' and run it by itself
  Keys.do_as_python { Python.run_block }
  # Do, take numeric prefix for before and after
  Keys.do_add_space { Code.add_space }
  Keys.do_as_test { Code.do_as_rspec }
  Keys.do_as_wrap { Block.do_as_wrap }
  Keys.do_as_quote { Notes.do_as_quote }
  Keys.do_as_xul { Firefox.do_as_xul }
  Keys.do_backward { $el.backward_kill_word(Keys.prefix || 1) }   # delete word backward
  Keys.do_code_align { Code.do_code_align }   # Based on input character, all matches line up
  Keys.do_click_back { Firefox.back }
  Keys.do_create_directory { FileTree.do_create_dir }
  # Keys.do_click_hyperlink { Firefox.click }   # compare with last AV version

  Keys.do_current_file { Files.delete_current_file }

  Keys.do_compare_history { History.diff_with_backup }   # compare with last AV version

  Keys.do_code_indent { Code.indent }
  Keys.do_count_matches {  View.count_matches }
  Keys.do_copy_next { Files.copy }   # copy file to next view
  Keys.do_colors_off { $el.font_lock_mode }   # toggles
  Keys.do_clean_quotes { Files.do_clean_quotes }   # Fix special chars

  Keys.do_compare_repository { Gito.diff_one_file }

  Keys.do_compare_saved { DiffLog.compare_with_saved }

  Keys.do_copy_to { FileTree.copy_to }
  Keys.do_compare_with { DiffLog.do_compare_with }
  Keys.DC1 { Clipboard.diff_1_and_2 }   # Compare contents of clipboards "1" and "2"
  # D: defined above - mapped to what C-d does by default
  Keys.do_expand { $el.dabbrev_expand nil }   # expand abbreviation
  Keys.do_forward { $el.kill_word(Keys.prefix || 1) }   # delete word forward
  # H
  # G: leave unmapped for escape
  Keys.do_here { Launcher.do_last_launch :here=>1 }
  Keys.do_indent { Code.indent_to }
  Keys.do_job { Macros.run }   # do last macro
  Keys.do_kill_all { Effects.blink :what=>:all; View.kill_all }   # kill all text in buffer
  Keys.do_kill_indented { CodeTree.do_kill_indented }  # Delete menu or file or whatever (just passes "0") prefix
  Keys.do_kill_matching { Search.kill_filter }
  Keys.do_kill_nonmatching { Search.kill_filter }
  Keys.do_kill_paragraph { View.kill_paragraph }   # kill all text in buffer
  Keys.do_kill_rest { CodeTree.kill_rest }   # kill adjacent lines at same indent as this one
  Keys.do_kill_siblings { CodeTree.kill_siblings }   # kill adjacent lines at same indent as this one
  Keys.do_kill_trailing { View.gsub!(/ +$/, "") }   # Deletes trailing whitespace
  Keys.do_list_ancestors { View.beep "- Changed to: do+visibility!" }   # Moved to do+visibility
  Keys.do_load_browser { Firefox.reload }
  Keys.do_last_command { Console.do_last_command }
  Keys.do_line_duplicate { Line.duplicate_line }
  Keys.do_load_file { Files.do_load_file }   # U prefix will auto-update / auto-refresh to relflect changes
  Keys.do_lines_having {   # delete lines matching a regex
    unless $el.elvar.current_prefix_arg
      delete_matching_lines( Keys.input(:prompt => "Delete lines having: ") )
    else
      delete_non_matching_lines( Keys.input(:prompt => "Delete lines not having: ") )
    end
  }
  Keys.do_linebreaks_linux { $el.set_buffer_file_coding_system :unix }
  Keys.do_line_next { Line.move :next }
  Keys.do_lines_order { Line.do_lines_sort }
  Keys.do_line_previous { Line.move(:previous) }
  Keys.do_lines_reverse { $el.reverse_region($el.region_beginning, $el.region_end) }
  Keys.do_lines_shuffle { Code.randomize_lines }   # Shuffle lines

  Keys.do_lines_toggle { Line.do_lines_toggle }   # Swap next N lines

  Keys.do_lines_unique { Code.kill_duplicates }   # Uniqify, delete duplicates
  Keys.do_linebreaks_windows { $el.set_buffer_file_coding_system :dos }
  Keys.do_move_to { FileTree.move_to }
  Keys.do_name_buffer { Buffers.rename }
  Keys.do_notes_colors { FileTree.apply_styles; Notes.apply_styles; FileTree.apply_styles_at_end }
  Keys.do_number_enter { Incrementer.enter }
  Keys.do_name_files { FileTree.rename_file }
  Keys.do_number_increment { Incrementer.increment }
  Keys.do_next_paragraph { Code.do_next_paragraph }   # Move line to start of next paragraph
  Keys.do_number_start { Incrementer.start }
  Keys.do_outline { History.open_current :outline=>true, :prompt_for_bookmark=>true }
  Keys.do_push { Gito.code_tree_diff }   # Commit to repos, push, etc
  Keys.do_query { Search.query_replace }   # do query replace
  Keys.do_run { Code.run }   # run code as ruby
  $el.define_key :global_map, $el.kbd("C-d C-s"), :cua_set_rectangle_mark   # Keys.do_several
  Keys.do_tree { FileTree.tree(:recursive=>true) }   # draw filesystem tree for current dir or bookmark
  Keys.do_upper { Launcher.do_last_launch }
  Keys.do_viewing { Buffers.open_viewing }   # Not great fit here
  Keys.do_whitespace { Deletes.delete_whitespace }   # delete blank lines
  # X
  Keys.do_you { $el.delete_char $el.elvar.current_prefix_arg || 1 }   # Delete character
  Keys.do_zip_next { Files.zip }
  Keys.set("C-d C-.") {   # Do .:  Go to point/bookmark starting with "." and run it (like pressing C-. on that line)
    input = Keys.input(:timed => true)
    $el.with(:save_window_excursion) do
      Bookmarks.go(".#{input}")
      Launcher.launch
    end
  }
  Keys.set("C-d C-/") { Code.comment }

  Keys.D1 { Search.query_replace_nth "1", "2" }
  Keys.D2 { Search.query_replace_nth "2", "1" }
  Keys.D3 { Search.query_replace_nth "3", "4" }
  Keys.D4 { Search.query_replace_nth "4", "3" }

end

.enter_keysObject



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
215
216
217
218
219
220
221
222
# File 'lib/xiki/key_bindings.rb', line 150

def self.enter_keys
  # E: enter...
  # Use E prefix for: inserting

  # TODO find different word?
  #   - Because "enter" can be confused with the enter key?
  #   - ideas: embed, emit, entry
  Keys.EE { Line.to_right }   # EE - end of line (E's default)
  Keys.enter_all { Launcher.enter_all }
  Keys.enter_bullet { Notes.bullet }
  Keys.enter_clipboard { Clipboard.paste("0") }   # paste
  Keys.enter_docs { Line.enter_docs }
  # E: defined above - mapped to what C-e does by default
  Keys.enter_file_path { Files.enter_file }   # Given a bookmark
  Keys.enter_firefox_tabs { Launcher.insert('- Firefox.tabs/') }   # Given a bookmark
  Keys.enter_history { DiffLog.enter_from_difflog }   # Save point and go to difflog to search
  Keys.enter_insert_date { View.enter_date }
  Keys.enter_insert_comment { Code.enter_insert_comment }    # insert date string (and time if C-u)
  Keys.enter_insert_new { DiffLog.enter_new }   # Enter Old: enter newly-deleted from last save
  Keys.enter_insert_ruby { code = Keys.input(:prompt=>"Enter ruby code to eval and insert results: "); View.insert(eval(code).to_s)}
  Keys.enter_insert_search { Search.enter_insert_search }

  Keys.enter_insert_old { DiffLog.enter_old }   # Enter Old: enter newly-deleted from last save

  Keys.enter_insert_words { PauseMeansSpace.go }
  Keys.enter_junior { Notes.enter_junior }
  Keys.enter_key { Keys.insert_code }
  Keys.enter_last_commands {
    bm = Keys.input(:timed => true, :prompt => "bookmark to show commands for (space for currently open): ")
    return Launcher.insert("- Console.tree/") if bm == " "
    Launcher.insert("- Console.history \"$#{bm}\"/")
  }
  Keys.enter_list_databases { Launcher.insert('- Couch.databases/') }
  Keys.enter_like_edits { Search.enter_like_edits }
  Keys.enter_log_javascript { Firefox.enter_log_javascript_line }
  Keys.enter_log_stack { Code.enter_log_stack }
  Keys.enter_log_line { Code.enter_log_line }
  Keys.enter_log_output { Code.enter_log_output }
  #     Keys.enter_last_log { Launcher.insert(Keys.prefix_u ? "- last/" : "- log/") }
  #     Keys.enter_last_launched { Launcher.enter_last_launched }
  Keys.enter_list_ruby { Launcher.insert("technologies/ruby/") }
  #     Keys.enter_like_test { Specs.enter_as_rspec }
  Keys.enter_log_time { Code.enter_log_time }
  Keys.enter_like_url { Firefox.enter_as_url }
  Keys.enter_like_variable { insert "\#{#{Clipboard.get(0)}}" }

  Keys.enter_menu { Xiki.insert_menu }   # Redundant with C-enter on blank line
  Keys.enter_note { Notes.enter_note }   # Redundant with C-enter on blank line
  Keys.enter_outline { Launcher.enter_outline }   # in tree, enter methods or headings

  Keys.enter_push { Gito.code_tree_diff(:enter=>true) }   # Commit to repos, push, etc
  Keys.enter_quote { FileTree.enter_quote }
  Keys.enter_row { View.insert_line }

  #     Keys.enter_search { Search.enter_search }
  Keys.enter_snippet { Snippet.insert }

  #Keys.enter_spot { Location.enter_at_spot }   # enter selected text at spot
  Keys.enter_tree { FileTree.tree(:here=>true) }
  Keys.enter_upper { View.enter_upper }
  Keys.enter_value { Clipboard.paste }
  # W
  Keys.enter_whitespace { Code.enter_whitespace }
  # X
  # Y
  # Z
  #Keys.E0 { Clipboard.paste("0") }   # Enter 0: paste from "0" tag
  Keys.E1 { Clipboard.paste(1) }   # Enter 1
  Keys.E2 { Clipboard.paste(2) }   # Enter 2
  Keys.E3 { Clipboard.paste(3) }
  Keys.E4 { Clipboard.paste(4) };   Keys.E5 { Clipboard.paste(5) };   Keys.E6 { Clipboard.paste(6) }
  Keys.E7 { Clipboard.paste(7) };   Keys.E7 { Clipboard.paste(8) };   Keys.E7 { Clipboard.paste(9) }
end

.isearchObject

Control keys during isearch



442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
# File 'lib/xiki/key_bindings.rb', line 442

def self.isearch
  Keys.search_axis { Search.to_left }
  Keys.search_bookmark { Search.bookmark }
  # B: leave unmapped for back

  Keys.search_clipboard { Search.isearch_clipboard }   # Clipboard (copy)

  Keys.search_delete { Search.isearch_delete }   # Delete
  Keys.search_enter { Search.enter }   # Enter: insert clipboard, replacing match
  Keys.search_frontward { Search.go_to_end }   # Forward
  Keys.search_g { Search.cancel }   # Stop searching
  # have_...
  $el.define_key :isearch_mode_map, $el.kbd("C-h"), nil
  Keys.search_have_append { Search.isearch_move_to "$t", :append=>1 }
  Keys.search_have_bullet { Search.have_label }
  Keys.search_have_case { Search.isearch_have_case }
  Keys.search_have_edges { Search.just_edges }   # Delete everything but chars at edges of match
  Keys.search_have_files { View.beep "- Changed to: search+have+navigation!" }
  Keys.search_have_highest { Search.isearch_restart :top }
  Keys.search_have_javascript { Search.isearch_have_output_javascript }
  Keys.search_have_line { Search.have_line }   # copy line back to search start
  Keys.search_have_nav { Search.isearch_move_to "$f" }

  Keys.search_have_output { Search.isearch_have_output }
  Keys.search_have_push { Gito.search_just_push }   # When search match

  Keys.search_have_right { Search.have_right }
  Keys.search_have_spot { Search.insert_at_spot }
  Keys.search_have_todo { Search.isearch_move_to "$t" }
  Keys.search_have_variable { Search.insert_var_at_search_start }
  Keys.search_have_within { Search.isearch_have_within }   # Grab everything except chars on edges

  # AVAILABLE: search_i ?  (when nothing searched for)

  # I: leave unmapped - had issues using it (messes up position)
  # just_...
  $el.define_key :isearch_mode_map, $el.kbd("C-j"), nil
  Keys.search_just_adjust { Search.isearch_just_adjust }
  Keys.search_just_bookmark { Search.just_bookmark }
  Keys.search_just_case { Search.isearch_just_case }   # make match be camel case
  Keys.search_just_difflog { Search.jump_to_difflog }   # find last string in difflog
  Keys.search_just_edits { Search.just_edits }   # Search in diff of edits to this file
  Keys.search_just_files { Search.isearch_restart "$f" }   # isearch for this string in $f
  Keys.search_just_have { Search.just_select }   # select match
  Keys.search_just_integer { Search.stop; Search.isearch "[0-9][0-9.]*", :regex=>1 }

  Keys.search_just_menu { Search.just_menu }
  #     Keys.search_just_mark { Search.just_marker }
  Keys.search_just_next { Search.isearch_restart :next }
  Keys.search_just_output { Search.isearch_restart "$o" }
  Keys.search_just_previous { Search.isearch_restart :previous }
  Keys.search_just_query { Search.isearch_query_replace :match }   # replace
  Keys.search_just_right { Search.isearch_restart :right }   # Search in top-right view
  Keys.search_just_search { Search.isearch_just_search }   # Add "##search" line in tree for match
  Keys.search_just_todo { Search.isearch_restart "$t" }   # isearch for this string in $t

  Keys.search_just_variable { Search.isearch_just_surround_with_char '#{', '}' }
  Keys.search_just_wrap { Ol << 'search_just_wrap';  toggle_truncate_lines }   # make match be snake case

  Keys.search_just_yellow { Search.just_orange }
  Keys.search_kill { Search.cut }   # cut

  $el.define_key :isearch_mode_map, $el.kbd("C-l"), nil

  Keys.search_like_clipboard {
    reverse = Search.was_reverse
    match = Search.stop
    Search.isearch Clipboard[0], :reverse=>reverse
  }   # make match be camel case
  Keys.search_like_delete { Search.like_delete }   # Delete all lines that contain the match
  Keys.search_like_file { Search.isearch_open }
  Keys.search_like_menu { Launcher.search_like_menu }
  Keys.search_like_output { Search.isearch_have_output :string=>1 }
  Keys.search_line_pull { Search.isearch_move_line }
  Keys.search_like_quote { Search.isearch_google :quote=>true }
  Keys.search_like_repository { Gito.search_repository }   # When not searching

  Keys.search_like_synonyms { Search.search_thesaurus }
  #     Keys.search_like_timer { Search.search_like_timer }

  #     Keys.search_like_thesaurus { Search.search_thesaurus }
  Keys.search_last_urls { Launcher.open("- Launcher.urls/") }
  Keys.search_like_variable { Search.just_name }
  Keys.search_like_web { Search.isearch_google }   # make match be snake case
  Keys.search_like_xiki { View.open "$x/#{Search.stop.strip}" }

  # Use search_navigated instead
  #     Keys.search_last_launched { Search.search_last_launched }
  #     Keys.search_log { Search.search_log }
  # M: leave unmapped for stop
  Keys.search_next { Search.isearch_next }   # Next, or navigated (if nothing searched for yet)
  Keys.search_outline { Search.isearch_outline }   # Outline
  Keys.search_paths { Search.isearch_paths }   # Just go to previous line
  # P: leave unmapped for previous
  # Q: leave unmapped for quoting
  # R: leave unmapped for reverse
  # S: leave unmapped for search
  Keys.search_to { Search.isearch_to }   # To: open file / jump to method
  Keys.search_usurp { Search.isearch_pull_in_sexp }   # usurp: pull sexp into search string
  Keys.search_value { Search.insert_at_search_start }   # Value: copy value back to search start
  # W: leave unmapped for pulling into search

  Keys.search_xiki { Search.xiki }   # search+xiki+__ mapped inside this method


  # Y: leave unmapped for yank
  Keys.search_zap { Search.zap }   # zap - delete up until search start

  # Surround with characters (quotes and brackets)

  $el.define_key(:isearch_mode_map, $el.kbd("C-'")) { Search.isearch_just_surround_with_char '"' }
  $el.define_key(:isearch_mode_map, $el.kbd("C-j C-'")) { Search.isearch_just_surround_with_char "'" }

  $el.define_key(:isearch_mode_map, $el.kbd("C-j C-,")) { Search.isearch_surround_with_tag }

  $el.define_key(:isearch_mode_map, $el.kbd("C-j C-SPC")) { Search.isearch_just_surround_with_char " " }

  $el.define_key(:isearch_mode_map, $el.kbd("C-`")) { Search.isearch_just_surround_with_char "~" }

  $el.define_key(:isearch_mode_map, $el.kbd("C-j C-/")) { Search.isearch_just_comment }
  $el.define_key(:isearch_mode_map, $el.kbd("C-j C-=")) { Search.just_increment }
  $el.define_key(:isearch_mode_map, $el.kbd("C-j C--")) { Search.just_increment(:decrement=>true) }

  $el.define_key(:isearch_mode_map, $el.kbd("C-9")) { Search.isearch_just_surround_with_char '(', ')' }
  $el.define_key(:isearch_mode_map, $el.kbd("C-j C-9")) { Search.isearch_just_surround_with_char '[', ']'}

  $el.define_key(:isearch_mode_map, $el.kbd("C-h C-[")) { Search.isearch_just_surround_with_char '[', ']' }
  $el.define_key(:isearch_mode_map, $el.kbd("C-j C-[")) { Search.isearch_just_surround_with_char '{', '}' }

  $el.define_key(:isearch_mode_map, $el.kbd("C-h C-'")) { Search.insert_quote_at_search_start }

  $el.define_key(:isearch_mode_map, $el.kbd("C-j C-1")) { Search.enter(Clipboard[1]) }   # isearch_just_1
  $el.define_key(:isearch_mode_map, $el.kbd("C-j C-2")) { Search.enter(Clipboard[2]) }   # isearch_just_2
  $el.define_key(:isearch_mode_map, $el.kbd("C-j C-3")) { Search.enter(Clipboard[3]) }   # isearch_just_3
  $el.define_key(:isearch_mode_map, $el.kbd("C-h C-1")) { Search.isearch_query_replace Clipboard[1] }
  $el.define_key(:isearch_mode_map, $el.kbd("C-h C-2")) { Search.isearch_query_replace Clipboard[2] }


  $el.define_key(:isearch_mode_map, $el.kbd("C-h C-0")) { Search.isearch_query_replace Clipboard[0] }

  $el.define_key(:isearch_mode_map, $el.kbd("C-1")) { Search.isearch_or_copy("1") }
  $el.define_key(:isearch_mode_map, $el.kbd("C-2")) { Search.isearch_or_copy("2") }
  $el.define_key(:isearch_mode_map, $el.kbd("C-3")) { Search.isearch_or_copy("3") }
  $el.define_key(:isearch_mode_map, $el.kbd("C-4")) { Search.isearch_or_copy("4") }
  $el.define_key(:isearch_mode_map, $el.kbd("C-5")) { Search.isearch_or_copy("5") }
  $el.define_key(:isearch_mode_map, $el.kbd("C-6")) { Search.isearch_or_copy("6") }
  $el.define_key(:isearch_mode_map, $el.kbd("C-7")) { Search.isearch_or_copy("7") }
  $el.define_key(:isearch_mode_map, $el.kbd("C-8")) { Search.isearch_or_copy("8") }

  $el.define_key(:isearch_mode_map, $el.kbd("C-=")) { $el.isearch_yank_char }   # Add one char from isearch
  $el.define_key(:isearch_mode_map, $el.kbd("C--")) { Search.subtract }   # Remove one char from isearch
  $el.define_key(:isearch_mode_map, $el.kbd("C-/")) { $el.isearch_delete_char }   # Remove last action from search results
  $el.define_key(:isearch_mode_map, $el.kbd("C-,")) { Search.isearch_query_replace }   # Replace all occurrences

  $el.define_key(:isearch_mode_map, $el.kbd("C-\\")) { Search.hide }   # Hide: hide non-matching

  $el.define_key(:isearch_mode_map, $el.kbd("C-0")) { Search.isearch_pause_or_resume }   # isearch_just_0

  # Safe mapping of C-m to Search.isearch_m (works when el4r is down)
  $el.el4r_lisp_eval(%`(defun isearch-m () (interactive)
    (if (eq (process-status el4r-process) 'run) (el4r-ruby-eval "Search.isearch_m") (isearch-exit)))
    `.unindent)
  $el.define_key :isearch_mode_map, $el.kbd("C-m"), :isearch_m   # Hide: hide non-matching

end

.keysObject

Define all keys



4
5
6
7
8
9
10
11
12
13
14
15
16
17
# File 'lib/xiki/key_bindings.rb', line 4

def self.keys
  Menu.init

  self.as_keys
  self.open_keys
  self.enter_keys
  self.to_keys
  self.layout_keys
  self.do_keys
  self.isearch
  self.misc

  Keys.add_menu_items
end

.layout_keysObject



390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
# File 'lib/xiki/key_bindings.rb', line 390

def self.layout_keys
  # L: layout...
  # Use L prefix for: adjusting the layout, changing what is visible

  Keys.LL { View.recenter }   # LL - recenter (L's default)
  Keys.layout_all { View.hide_others }
  Keys.layout_balance { 3.times { View.balance } }   # balance windows
  Keys.layout_create { View.create }   # open new view

  Keys.layout_dimensions { Launcher.open('- window/dimensions/presets/', :bar_is_fine=>1, :first_letter=>1) }

  Keys.layout_expand { View.enlarge }
  # F
  Keys.layout_files { View.layout_files }
  Keys.layout_hide { View.hide }   #
  Keys.layout_indent { Hide.hide_by_indent }   # only show lines indented less than x
  Keys.layout_jump { View.shift }
  Keys.layout_kill { View.kill }
  # L: defined above - mapped to what C-d does by default
  Keys.layout_marker { Color.colorize }   # colorize line, etc
  Keys.layout_next { View.next(:blink=>true) }   # next view
  Keys.layout_output { View.layout_output }
  Keys.layout_previous { View.previous(:blink=>true) }
  # Q
  Keys.layout_right { View.to_upper(:blink=>true) }   # Go to view to the right
  Keys.layout_search { Keys.prefix_u? ? Search.find_in_buffers(Keys.input(:prompt=>"Search all open files for: ")) : Hide.search }
  Keys.layout_todo { View.layout_todo }   # show bar on left with the quick bookmark named "-t"
  Keys.layout_uncover { Hide.reveal }   # Reveal all hidden text
  # V
  Keys.layout_visibility { Launcher.open('- window/visibility/', :bar_is_fine=>1, :first_letter=>1) }
  Keys.layout_wrap { $el.toggle_truncate_lines }   # wrap lines
  # X
  # Y
  Keys.layout_zoom { $el.narrow_to_region($el.region_beginning, $el.region_end) }   # show selection only
  Keys.L0 { View.recenter_top }   # Layout 0: scroll so cursor is 0 lines from top af window
  Keys.L1 { Move.to_window(1, :blink=>true) }   # Layout 1
  Keys.L2 { Move.to_window(2, :blink=>true) }   # Layout 2
  Keys.L3 { Move.to_window(3, :blink=>true) };  Keys.L4 { Move.to_window(4, :blink=>true) }
  Keys.L5 { Move.to_window(5, :blink=>true) };  Keys.L6 { Move.to_window(6, :blink=>true) };  Keys.L7 { Move.to_window(7, :blink=>true) };  Keys.L8 { Move.to_window(8, :blink=>true) }
  Keys.L9 { Move.to_last_window(:blink=>true) }

  # Todo: if prefix passed, expand window, but leave other windows open with that much space in each
  #    Keys.LCR { Colors.highlight  }   # Layout Tree: show bar on left with the quick bookmark named "-t"

  # Todo:
  # - Make it recognize :n when opening
  #   - If you put it at end of path or as tree node, it should make it into path
  #     - So look at it when opening path and optionally jump
  #  - narrow block to region:
end

.miscObject



608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
# File 'lib/xiki/key_bindings.rb', line 608

def self.misc

  $el.define_key :global_map, $el.kbd("C-S-v"), :scroll_down

  # Single character definitions
  Keys.B { Move.backward }
  Keys.F { Move.forward }
  Keys.Q { Keys.timed_insert }
  Keys.set("C-.") { Launcher.launch_or_hide(:blink=>true) }

  # Alternate key for C-. (probably easier to remember)
  Keys.set("<C-return>") { Launcher.launch_or_hide(:blink=>true) }
  Keys.set("<M-return>") { Launcher.launch_or_hide(:blink=>true) }

  if $el.locate_library "ruby-mode"
    $el.el_require :ruby_mode
    $el.define_key :ruby_mode_map, $el.kbd("C-\\") do
      Hide.show
      Hide.hide_unless /^ *(def|class|module|create_table|it|describe) /
      $el.recenter -2
      Hide.search
    end
  end
  $el.el_require :cc_mode

  # Unmap keys in modes that interfere
  $el.el4r_lisp_eval("(require 'shell)")
  $el.define_key :shell_mode_map, $el.kbd("C-d"), nil   # shell-mode etc. special C-d shortcuts over-ride xiki
  $el.define_key :objc_mode_map, $el.kbd("C-d"), nil
  $el.define_key :c_mode_map, $el.kbd("C-d"), nil
  $el.el4r_lisp_eval("(require 'dired)")
  $el.define_key :dired_mode_map, $el.kbd("C-o"), nil
  $el.define_key :java_mode_map, $el.kbd("C-d"), nil

  begin
    $el.el_require :php_mode
    $el.define_key :php_mode_map, $el.kbd("C-d"), nil
  rescue Exception=>e
  end

  # C-l in ediff mode
  $el.defun(:ediff_disable_C_l) { $el.define_key(:ediff_mode_map, $el.kbd("C-l"), nil) }
  $el.add_hook :ediff_keymap_setup_hook, :ediff_disable_C_l

  ControlTab.keys

  Keys.set("M-0") { Styles.font_size 120 }
  Keys.set("M-=") { Styles.zoom }
  Keys.set("M--") { Styles.zoom :out=>1 }

  View.sensible_defaults
end

.open_keysObject



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
# File 'lib/xiki/key_bindings.rb', line 66

def self.open_keys
  # O: open...
  # Use O prefix for: opening, jumping to files

  Keys.OO { $el.open_line $el.elvar.current_prefix_arg || 1 }   # OO - open line (O's default)
  Keys.open_a_calendar { $el.calendar }
  #Keys.OAD { Svn.jump_to_diff }
  Keys.open_as_file { Code.open_as_file }
  Keys.open_as_elisp { $el.find_function_at_point }   # jump to definition of lisp function
  Keys.open_as_highest { FileTree.open_as_upper }
  Keys.open_as_lowest { FileTree.open_as_upper(:lowest) }
  Keys.open_as_utf { $el.revert_buffer_with_coding_system('utf-8'.to_sym) }
  Keys.open_as_2 { FileTree.open_as_upper(:second) }
  Keys.open_as_root { Files.open_sudo }
  Keys.open_a_shell { Console.open }
  Keys.open_as_tail { Files.open_tail }
  Keys.open_bookmark { Bookmarks.go }
  Keys.open_current { Launcher.open("- current/") }   # open buffer list
  Keys.open_diffs { DiffLog.open }   # shows diffs of what you've edited
  Keys.open_edited { Files.open_edited }   # show recently edited files
  Keys.open_file { Files.open }
  # G: leave unmapped for escape
  Keys.open_history { Launcher.open("- files/history/") }   # show recently viewed files
  Keys.open_in_browser { Browser.open_in_browser }
  Keys.open_in_left { View.open_in_bar }
  Keys.open_in_os { Files.open_in_os }
  Keys.open_in_right { View.open_in_right }
  Keys.open_in_window { Files.open_in_window }   # Expose file in OS folder
  Keys.open_just { Files.open_just }
  Keys.open_key { Keys.jump_to_code }   # jump to ruby code of key definition
  Keys.open_list_appointments { View.bar; Launcher.open("- Agenda.menu/") }
  Keys.open_list_bookmarks { Launcher.open("bookmarks/list/") }
  Keys.open_list_clipboard { Launcher.open("clipboard/log/") }
  #     Keys.open_last_error { Code.show_el4r_error }
  Keys.open_list_faces { Styles.list_faces }
  #     Keys.open_list_flashes { Launcher.open "- view/flashes/" }
  #     Keys.open_list_faces { list_faces_display }
  Keys.open_lisp_info { $el.info "elisp" }   # Open manual

  #     Keys.open_log_list { Launcher.open(Keys.prefix_u ? "- last/" : "- log/") }   # Show git diffs o 1 file
  Keys.open_log_list { Git.show_log_one_file }   # Show git diffs o 1 file

  #     Keys.open_list_styles { list_faces_display }
  Keys.open_last_output { Ol.open_last_output }   # Show git diffs for a bookmark
  Keys.open_log_push { Gito.show_log }   # Show git diffs for a bookmark
  Keys.open_last_screenshot { Files.open_last_screenshot }
  #     Keys.open_like_text { txt = View.txt; View.to_buffer "txt"; View << txt }
  #     Keys.open_log_tree { Rails.tree_from_log }
  Keys.open_list_databases { Launcher.open('- Couch.databases/') }
  #     Keys.open_list_models { Launcher.open("- Merb.models/") }
  Keys.open_list_javascript { Launcher.open("- technologies/javascript/") }
  Keys.open_list_names { Clipboard.list }
  Keys.open_list_ruby { Launcher.open("- technologies/ruby/") }
  Keys.open_list_technologies { Launcher.open("- technologies/") }   # open first hyperlink on page
  Keys.open_last_urls { Launcher.open "- last/urls/" }
  Keys.open_menu { Xiki.open_menu }   # Open all menus and show them
  Keys.open_not_saved { Launcher.open("- history/unsaved files/") }
  # O: defined above - mapped to what C-o does by default
  Keys.open_point { Bookmarks.go(nil, :point => true) }
  Keys.open_quick { Bookmarks.open_quick }   # like OB but uses different temporary namespace
  Keys.open_related_test { Code.open_related_rspec }
  Keys.open_related_file { Code.open_related_file }
  Keys.open_repository_list { Gito.show_log_one_file }   # Show git diffs o 1 file
  # S
  Keys.open_search { Search.outline_search }   # hide search via outline
  Keys.open_tree { FileTree.tree }   # draw a tree, prompting for bookmark tag
  Keys.open_up { View.show_dir }   # open enclosing dir
  Keys.open_visualize { Code.do_list_ancestors }   # show currently open files and buffers
  Keys.open_windows { View.restore }   # open window configuration by name
  Keys.open_xiki_docs { Help.display_docs }
  Keys.open_xiki_help { Launcher.open("- Help.menu/") }   #
  # Y
  # Z

  #     Keys.O0 {}   # Open 0: open bookmarked file tagged with "0"

  Keys.O1 { Files.open_nth 1 };  Keys.O2 { Files.open_nth 2 };  Keys.O3 { Files.open_nth 3 };  Keys.O4 { Files.open_nth 4 };  Keys.O5 { Files.open_nth 5 }
  Keys.O6 { Files.open_nth 6 };  Keys.O7 { Files.open_nth 7 };  Keys.O8 { Files.open_nth 8 };  Keys.O9 { Files.open_nth 9 }

  Keys.O0 { View.open("$0") }   # Open 0: open bookmarked file tagged with "0"

  Keys.O8 { History.open_current :all => true, :prompt_for_bookmark => true }   # Like do_outline, but inserts all
end

.to_keysObject



343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
# File 'lib/xiki/key_bindings.rb', line 343

def self.to_keys
  # T: to...
  # Use T prefix for: moving cursor, jumping to specific points

  $el.el4r_lisp_eval(%Q`(global-set-key (kbd "C-\'") \'repeat)`)

  Keys.TT { $el.transpose_chars $el.elvar.current_prefix_arg }   # TT - toggle character (T's default)
  Keys.to_axis { Move.to_axis }   # to beginning of file
  Keys.to_backward { $el.backward_word(Keys.prefix || 1) }   # move backward one word
  Keys.to_column { Move.to_column }   # to x coordinate - ie column
  # D
  Keys.to_end { Move.to_end }   # To end of line
  Keys.to_forward { $el.forward_word(Keys.prefix || 1) }   # move forward one word
  Keys.to_highest { View.to_highest }   # to beginning of file
  Keys.to_indent { Move.to_indent }
  Keys.to_junior { Move.to_junior }
  Keys.to_kind { Move.to_other_bracket }   # to matching bracket, etc
  Keys.to_lowest { View.to_bottom }   # move to end
  Keys.to_menu { Menu.to_menu }   # to matching bracket, etc
  Keys.to_next { Move.to_next_paragraph }   # to next paragraph
  Keys.to_outline { FileTree.to_outline }
  Keys.to_previous { Move.to_previous_paragraph }   # to beginning of previous paragraph
  Keys.to_quote { Move.to_quote }   # move to next ...|... quote
  Keys.to_row { Move.to_line }   # go to nth line, relative to top of window
  Keys.to_spot { Location.to_spot }
  # T: defined above - mapped to what C-t does by default
  Keys.to_up { Tree.to_parent }   # to parent (last line indented less)
  Keys.to_visible { View.to_relative }   # go to nth line, relative to top of window
  Keys.to_words { Line.to_beginning }   # move to start of words on line
  # X
  # Z

  Keys.T0 { View.to_nth_paragraph 0 }
  Keys.T1 { View.to_nth_paragraph 1 }
  Keys.T2 { View.to_nth_paragraph 2 }
  Keys.T3 { View.to_nth_paragraph 3 }
  Keys.T4 { View.to_nth_paragraph 4 }
  Keys.T5 { View.to_nth_paragraph 5 }
  Keys.T6 { View.to_nth_paragraph 6 }
  Keys.T7 { View.to_nth_paragraph 7 }
  Keys.T8 { View.to_nth_paragraph 8 }
  Keys.T9 { View.to_nth_paragraph 9 }

  Keys.set("C-t C-/") { Code.to_comment }

end