class Vagrant::Util::InstallZSHShellConfig
Install autocomplete script to zsh config located as .zshrc
Public Class Methods
new()
click to toggle source
Calls superclass method
Vagrant::Util::InstallShellConfig::new
# File lib/vagrant/util/install_cli_autocomplete.rb, line 79 def initialize string_insert = """fpath=(#{File.join(Vagrant.source_root, "contrib", "zsh")} $fpath)\ncompinit""".freeze config_paths = [".zshrc".freeze].freeze super(string_insert, config_paths) end