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
{{ message }}
This repository was archived by the owner on Mar 24, 2022. It is now read-only.
Having a difficult time overriding the folding set by PR #1:
" folding
setlocal foldmethod=indent
setlocal foldlevel=6 " by default do not fold
I use a very vanilla vim, but folding occurs, appears as:
verify-docker-tcp-server:
cmd.run:
# although docker service is 'started', we must await a few seconds until tcp port is bound
- name: |
timeout 10 bash -c '\
until curl --verbose --fail --show-error --silent \
+-------- 4 lines: https://localhost:2376/images/json \----------------------------------------------
do
sleep 1
done'
If I try to disable this by .vimrc:
set foldmethod=manual
These settings are not honored when opening any .sls file, they remain as set in sls.vim, when i type ":set foldmethod" on any non-.sls file, foldmethod=manual, but opening a .sls sets foldmethod=indent again.