reline 0.4.1 → 0.4.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b632074a7d879f8c00b4af972fb39af64a4775fbfdf0bedd252fa629891b77b4
4
- data.tar.gz: 2406a738d92b076047ee697f527e4839cfd3012975a188784197cfddba3ce277
3
+ metadata.gz: e7094a7af234fede8c3b7a691066f57e68c8f7873ec8d18aeea7c9416f18958d
4
+ data.tar.gz: 7fad4ae701cdb34dcb22dd07428c3719672cc68ffa61b0bfbe005ae6326b4027
5
5
  SHA512:
6
- metadata.gz: 84f7857bea1edc1bdf6035c68be9c6278e3f9749b6978d5bdbe7471495d9b44ade2be95752446a82afbab7d653fff679523bc7d697a511cc8d2772ec190cdf49
7
- data.tar.gz: 966a26ac5a42a2f8f21bc330e92469fa1543e87346f743282a7dc585611e4d0061a4db223367dac35fe37803984f8eec4126a1f5d4cd573c96bd2476b832f94e
6
+ metadata.gz: 8fcbaaa70d79beef33e8ff8150a693c640212b085f4622d1b8acf5aa2a5b742be32acb2076ef844a24f3566b623f7d3522ce01147caa30c79e61a86dee53307a
7
+ data.tar.gz: dbadec0e7d7604239f213ac91a1a32398700cd514629f41d1d513713fd03147d1beec830f2160e09c782fa0fd7708727732a556c0c07a9957fecf8c3565b0d53
data/lib/reline/face.rb CHANGED
@@ -186,9 +186,9 @@ class Reline::Face
186
186
  conf.define :scrollbar, style: :reset
187
187
  end
188
188
  config(:completion_dialog) do |conf|
189
- conf.define :default, foreground: :white, background: :cyan
190
- conf.define :enhanced, foreground: :white, background: :magenta
191
- conf.define :scrollbar, foreground: :white, background: :cyan
189
+ conf.define :default, foreground: :bright_white, background: :gray
190
+ conf.define :enhanced, foreground: :black, background: :white
191
+ conf.define :scrollbar, foreground: :white, background: :gray
192
192
  end
193
193
  end
194
194
 
@@ -62,7 +62,7 @@ class Reline::History < Array
62
62
  private def check_index(index)
63
63
  index += size if index < 0
64
64
  if index < -2147483648 or 2147483647 < index
65
- raise RangeError.new("integer #{index} too big to convert to `int'")
65
+ raise RangeError.new("integer #{index} too big to convert to 'int'")
66
66
  end
67
67
  # If history_size is negative, history size is unlimited.
68
68
  if @config.history_size.positive?
@@ -14,7 +14,7 @@ class Reline::KillRing
14
14
  end
15
15
 
16
16
  def ==(other)
17
- object_id == other.object_id
17
+ equal?(other)
18
18
  end
19
19
  end
20
20
 
@@ -1313,7 +1313,7 @@ class Reline::LineEditor
1313
1313
  end
1314
1314
  if not just_show_list and target < completed
1315
1315
  @line = (preposing + completed + completion_append_character.to_s + postposing).split("\n")[@line_index] || String.new(encoding: @encoding)
1316
- line_to_pointer = (preposing + completed + completion_append_character.to_s).split("\n").last || String.new(encoding: @encoding)
1316
+ line_to_pointer = (preposing + completed + completion_append_character.to_s).split("\n")[@line_index] || String.new(encoding: @encoding)
1317
1317
  @cursor_max = calculate_width(@line)
1318
1318
  @cursor = calculate_width(line_to_pointer)
1319
1319
  @byte_pointer = line_to_pointer.bytesize
@@ -1360,7 +1360,7 @@ class Reline::LineEditor
1360
1360
  completed = @completion_journey_data.list[@completion_journey_data.pointer]
1361
1361
  new_line = (@completion_journey_data.preposing + completed + @completion_journey_data.postposing).split("\n")[@line_index]
1362
1362
  @line = new_line.nil? ? String.new(encoding: @encoding) : new_line
1363
- line_to_pointer = (@completion_journey_data.preposing + completed).split("\n").last
1363
+ line_to_pointer = (@completion_journey_data.preposing + completed).split("\n")[@line_index]
1364
1364
  line_to_pointer = String.new(encoding: @encoding) if line_to_pointer.nil?
1365
1365
  @cursor_max = calculate_width(@line)
1366
1366
  @cursor = calculate_width(line_to_pointer)
@@ -2563,6 +2563,13 @@ class Reline::LineEditor
2563
2563
  end
2564
2564
  alias_method :kill_line, :ed_kill_line
2565
2565
 
2566
+ # Editline:: +vi_change_to_eol+ (vi command: +C+) + Kill and change from the cursor to the end of the line.
2567
+ private def vi_change_to_eol(key)
2568
+ ed_kill_line(key)
2569
+
2570
+ @config.editing_mode = :vi_insert
2571
+ end
2572
+
2566
2573
  # Editline:: +vi-kill-line-prev+ (vi: +Ctrl-U+) Delete the string from the
2567
2574
  # beginning of the edit buffer to the cursor and save it to the
2568
2575
  # cut buffer.
@@ -1,3 +1,3 @@
1
1
  module Reline
2
- VERSION = '0.4.1'
2
+ VERSION = '0.4.3'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: reline
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - aycabta
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-28 00:00:00.000000000 Z
11
+ date: 2024-02-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: io-console
@@ -57,7 +57,10 @@ files:
57
57
  homepage: https://github.com/ruby/reline
58
58
  licenses:
59
59
  - Ruby
60
- metadata: {}
60
+ metadata:
61
+ bug_tracker_uri: https://github.com/ruby/reline/issues
62
+ changelog_uri: https://github.com/ruby/reline/releases
63
+ source_code_uri: https://github.com/ruby/reline
61
64
  post_install_message:
62
65
  rdoc_options: []
63
66
  require_paths:
@@ -73,7 +76,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
76
  - !ruby/object:Gem::Version
74
77
  version: '0'
75
78
  requirements: []
76
- rubygems_version: 3.5.0.dev
79
+ rubygems_version: 3.5.1
77
80
  signing_key:
78
81
  specification_version: 4
79
82
  summary: Alternative GNU Readline or Editline implementation by pure Ruby.