summaryrefslogtreecommitdiffstats
path: root/runtime/ftplugin/changelog.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-03-28 20:58:01 +0000
committerBram Moolenaar <Bram@vim.org>2005-03-28 20:58:01 +0000
commit582fd85b02e50b2aba025ff522c04a2293a45985 (patch)
tree3b721443d775ab6903fd8ff758f432046ee6b3cc /runtime/ftplugin/changelog.vim
parent8b879e7fe8d02b59df4c39442c53b37ccd38b50c (diff)
updated for version 7.0065
Diffstat (limited to 'runtime/ftplugin/changelog.vim')
-rw-r--r--runtime/ftplugin/changelog.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/ftplugin/changelog.vim b/runtime/ftplugin/changelog.vim
index 47d58ccb90..847cca7e8e 100644
--- a/runtime/ftplugin/changelog.vim
+++ b/runtime/ftplugin/changelog.vim
@@ -216,7 +216,7 @@ if &filetype == "changelog"
command! -nargs=0 NewChangelogEntry call s:new_changelog_entry()
endif
- let b:undo_ftplugin = "setl com< tw< fo< et< ai<"
+ let b:undo_ftplugin = "setl com< tw< fo< et<"
if &textwidth == 0
setlocal textwidth=78
@@ -224,7 +224,7 @@ if &filetype == "changelog"
setlocal comments=
setlocal formatoptions+=t
setlocal noexpandtab
- setlocal autoindent
+ " setlocal autoindent now in indent file
let &cpo = cpo_save
else