aboutsummaryrefslogtreecommitdiff
path: root/vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2015-07-02 10:52:59 +1200
committerTom Ryder <tom@sanctum.geek.nz>2015-07-02 10:52:59 +1200
commita0611d528c1ab0eb12555dfbc2e391b78f77adb4 (patch)
treebdb9805bc60bb9891165a23848aa790d700e24b6 /vim
parentComment nitpick (diff)
downloaddotfiles-a0611d528c1ab0eb12555dfbc2e391b78f77adb4.tar.gz
dotfiles-a0611d528c1ab0eb12555dfbc2e391b78f77adb4.zip
Use only single quotes for consistency
Diffstat (limited to 'vim')
-rw-r--r--vim/vimrc4
1 files changed, 2 insertions, 2 deletions
diff --git a/vim/vimrc b/vim/vimrc
index a0ccd524..8b3aa719 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -141,7 +141,7 @@ nnoremap J mzJ`z
" If we can, add j to the format options to get rid of comment leaders when
" joining lines
-if v:version > 703 || v:version == 703 && has("patch541")
+if v:version > 703 || v:version == 703 && has('patch541')
set formatoptions+=j
endif
@@ -564,7 +564,7 @@ if has('eval') && has('autocmd')
" Declare function for turning off slow options
function! BigFileMeasures()
- let l:file = expand("<afile>")
+ let l:file = expand('<afile>')
if getfsize(l:file) > g:bigfilesize
setlocal nobackup
setlocal nowritebackup