summaryrefslogtreecommitdiffstats
path: root/ftplugin
diff options
context:
space:
mode:
authorAdam Stankiewicz <sheerun@sher.pl>2020-09-09 17:08:29 +0200
committerAdam Stankiewicz <sheerun@sher.pl>2020-09-09 17:08:29 +0200
commit2fe310256e82ec8c4c160ebc171fe18c8da06330 (patch)
treea39a7ae1dcabdc76f22a3a2a63ad42c42a0d6f76 /ftplugin
parent2e1a9806326445c5cbdbb3b0cc7d82c7a16881b0 (diff)
downloadvim-polyglot-2fe310256e82ec8c4c160ebc171fe18c8da06330.tar.gz
vim-polyglot-2fe310256e82ec8c4c160ebc171fe18c8da06330.zip
Transcompile ..= operator to support old vims, fixes #542
Diffstat (limited to 'ftplugin')
-rw-r--r--ftplugin/yaml.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/ftplugin/yaml.vim b/ftplugin/yaml.vim
index 2e9728bd..261d71ca 100644
--- a/ftplugin/yaml.vim
+++ b/ftplugin/yaml.vim
@@ -19,7 +19,7 @@ setlocal comments=:# commentstring=#\ %s expandtab
setlocal formatoptions-=t formatoptions+=croql
if !exists("g:yaml_recommended_style") || g:yaml_recommended_style != 0
- let b:undo_ftplugin ..= " sw< sts<"
+ let b:undo_ftplugin .= " sw< sts<"
setlocal shiftwidth=2 softtabstop=2
endif