fix vim vundle plugin install #204

Merged
mg merged 12 commits from vim into master 2024-10-08 17:52:39 +02:00
Showing only changes of commit fe369a70be - Show all commits

View file

@ -2,10 +2,10 @@
- name: Vundle - PluginInstall # noqa no-changed-when risky-shell-pipe - name: Vundle - PluginInstall # noqa no-changed-when risky-shell-pipe
become: true become: true
become_user: "{{ item.user }}" become_user: "{{ item.user }}"
ansible.builtin.shell: yes | vim -E -c PluginInstall -c qall ansible.builtin.shell: "yes | vim -E -c PluginInstall -c qall"
args: args:
chdir: "{{ item.home }}" chdir: "{{ item.home }}"
loop: "{{ dotfiles }}" loop: "{{ dotfiles }}"
register: plugin.rc register: plugin
successful_when: plugin.rc == 1 successful_when: plugin.rc == 1
... ...