diff options
author | aycabta <[email protected]> | 2021-09-02 21:36:14 +0900 |
---|---|---|
committer | git <[email protected]> | 2021-09-02 21:36:24 +0900 |
commit | f734590f8ec9b9ac938f625eb6dd586039d287db (patch) | |
tree | baff0545327ddb8c68860436af136bdb15adf521 | |
parent | 137fde717bfa4d1a116bf1d56c288a1f3016126c (diff) |
[ruby/reline] Add a space
https://github.com/ruby/reline/commit/3d70e07331
-rw-r--r-- | lib/reline.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/reline.rb b/lib/reline.rb index 18ccce2058..1b5c7a8ce3 100644 --- a/lib/reline.rb +++ b/lib/reline.rb @@ -194,7 +194,7 @@ module Reline # Auto complete starts only when edited return nil end - pre, target, post= retrieve_completion_block(true) + pre, target, post = retrieve_completion_block(true) if target.nil? or target.empty?# or target.size <= 3 return nil end |