You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am facing one wierd issue, regarding vai and vaI
Below is an excerpt of Vagrant file.
end
# starting provisionig only after all nodes are up
if i == node_count
config.vm.provision "ansible" do |ansible|
ansible.playbook = "prereq.yaml"
ansible.limit = "all"
ansible.verbose = "v"
ansible.groups = {
"dp-yarn-master" => ["master"],
"dp-yarn-slave" => ["node-[1:#{node_count}]"],
"[dp-yarn:children]" => ["dp-yarn-master", "dp-yarn-slave"]
}
}
end
end
if I do vai from line number 15, isn't it supposed to select line number 16 also?
But vaI is working as expected.
The text was updated successfully, but these errors were encountered:
Hi, Thanks for this awesome plugin
I am facing one wierd issue, regarding
vai
andvaI
Below is an excerpt of
Vagrant file
.if I do
vai
from line number 15, isn't it supposed to select line number 16 also?But
vaI
is working as expected.The text was updated successfully, but these errors were encountered: