用于创建与 greenletters 一起使用的临时文件的 Ruby 脚本

用于创建与 greenletters 一起使用的临时文件的 Ruby 脚本

我正在使用expectzsh 来测试自动完成(实际上使用 Ruby gem,并在幕后greenletters使用 Ruby来调用)。在深入研究文档和旧档案后(这是给我以下代码的最终评论:PTYexpecthttps://narkive.com/jbOlxniA:5.2481.94)我有这种方法可以轻松地在“干净”的系统上加载完成:

PROMPT='>' zsh -f
fpath+=($PWD/Completion)
autoload -Uz compinit
_compdir=$PWD/Completion compinit -D

现在,手动创建文件并以这种方式加载它是可行的完全没问题。但是,一旦我尝试使用greenletters库加载它,它就不会加载任何补全:

>options Completion/
------------------------------------------------------------

这是用 ruby​​ 编写的 SSCCE(我在简单的expect脚本中创建相同的示例时遇到问题)。您需要运行gem install greenletters才能运行此脚本:

require 'tempfile'
require 'greenletters'
require 'tmpdir'

@tempdir = Dir.mktmpdir
completions_folder = @tempdir + '/Completion'
FileUtils.mkdir_p(completions_folder)
@completion_script = Tempfile.create('_completion', completions_folder)
@completion_script.write(DATA)
puts @tempdir
@adv = Greenletters::Process.new("PROMPT='>' zsh -f", transcript: $stdout, timeout: 3)
@adv.start!
@adv.wait_for(:output, />/i)
@adv << "cd #{@tempdir}\r"
@adv.wait_for(:output, />/i)
@adv << "fpath+=($PWD/Completion)\r"
@adv.wait_for(:output, />/i)
@adv << "autoload -Uz compinit\r"
@adv.wait_for(:output, />/i)
@adv << "_compdir=$PWD/Completion compinit -D\r"
@adv.wait_for(:output, />/i)
@adv << "options \t"
@adv.wait_for(:output, />/i)

__END__
#compdef _options options
function _options_help {
  _arguments \
    "-h[Show help information]" \
    "--help[Show help information]"
}
function _options_desc {
  _arguments \
    "--test=[desc]" \
    "-h[Show help information]" \
    "--help[Show help information]"
}
function _options {
  local line

  local -a commands
  commands=(
    'desc:use description flag for description'
    'help:Describe available commands or one specific command'
  )

  _arguments \
    "-h[Show help information]" \
    "--help[Show help information]" \
    "1: : _describe 'command' commands" \
    "*::arg:->args"

  case $state in
    args)
      case $line[1] in
        desc)
          _options_desc
        ;;
        help)
          _options_help
        ;;
      esac
    ;;
  esac
}
_options "$@"

zsh 在 PTY 中的行为与常规加载不同吗?这是我对 PTY 的一般不理解吗?他们都是这样工作的吗?

相关内容