aboutsummaryrefslogtreecommitdiff
path: root/vim/ftplugin
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-05-09 21:14:33 +1200
committerTom Ryder <tom@sanctum.geek.nz>2020-05-09 21:14:33 +1200
commit61510136713744eaa0639830c0f7a2a990cfbb54 (patch)
tree9b002a618e124451adcd141ce5eeaef03e4c6582 /vim/ftplugin
parentUse tabs for mpdconf (diff)
downloaddotfiles-61510136713744eaa0639830c0f7a2a990cfbb54.tar.gz
dotfiles-61510136713744eaa0639830c0f7a2a990cfbb54.zip
Some spelling fixes
Diffstat (limited to 'vim/ftplugin')
-rw-r--r--vim/ftplugin/csv.vim2
-rw-r--r--vim/ftplugin/markdown.vim2
2 files changed, 2 insertions, 2 deletions
diff --git a/vim/ftplugin/csv.vim b/vim/ftplugin/csv.vim
index 9bd3e86e..68378d62 100644
--- a/vim/ftplugin/csv.vim
+++ b/vim/ftplugin/csv.vim
@@ -4,6 +4,6 @@ if exists('b:did_ftplugin')
endif
let b:did_ftplugin = 1
-" No autoformatting
+" No automatic formatting
setlocal formatoptions=
let b:undo_ftplugin = 'formatoptions<'
diff --git a/vim/ftplugin/markdown.vim b/vim/ftplugin/markdown.vim
index 3f41cf8d..ddd88e2c 100644
--- a/vim/ftplugin/markdown.vim
+++ b/vim/ftplugin/markdown.vim
@@ -56,7 +56,7 @@ xnoremap <buffer> <expr> <LocalLeader>Q
let b:undo_ftplugin .= '|nunmap <buffer> <LocalLeader>Q'
\ . '|xunmap <buffer> <LocalLeader>Q'
-" Autoformat headings
+" Automatically format headings
command -buffer -nargs=1 MarkdownHeading
\ call markdown#Heading(<f-args>)
nnoremap <buffer> <LocalLeader>=