KOBAYASHI Shuji 9b928fa443 [ruby/reline] Sort completion list
#### Legacy mode:

  ```console
  $ irb --legacy
  irb(main):001:0> l[TAB][TAB]
  lambda           load             local_variables  loop
  ```

#### Before this patch:

  ```console
  $ irb
  irb(main):001:0> l[TAB][TAB]
  local_variables
  loop
  lambda
  load
  ```

#### After this patch:

  ```console
  $ irb
  irb(main):001:0> l[TAB][TAB]
  lambda
  load
  local_variables
  loop
  ```

https://github.com/ruby/reline/commit/6074069c7d
2020-01-05 11:28:01 +09:00
..
2019-10-12 14:03:21 +09:00
2019-11-07 16:36:14 +09:00
2019-12-24 18:41:55 -05:00
2019-12-24 09:56:40 +09:00
2019-12-22 21:48:54 -05:00
2019-12-20 12:19:45 +09:00
2019-11-07 07:16:27 +09:00
2019-12-22 21:48:54 -05:00
2019-11-07 16:36:14 +09:00
2019-12-24 08:04:01 +09:00
2020-01-05 11:28:01 +09:00
2019-12-20 11:50:32 +09:00
2019-11-09 07:32:34 +09:00
2019-12-15 16:41:10 +09:00
2019-10-12 14:03:21 +09:00
2019-12-24 21:22:46 +09:00
2019-09-19 19:06:18 +09:00
2019-12-20 01:40:00 +09:00
2019-11-12 17:24:48 +09:00
2019-12-22 21:48:54 -05:00
2019-12-25 10:57:44 +09:00
2019-12-20 11:50:32 +09:00
2019-12-20 12:19:45 +09:00
2019-08-19 17:52:20 +09:00