aboutsummaryrefslogtreecommitdiff
path: root/vim/config/format.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/config/format.vim')
-rw-r--r--vim/config/format.vim38
1 files changed, 0 insertions, 38 deletions
diff --git a/vim/config/format.vim b/vim/config/format.vim
deleted file mode 100644
index 86557a8c..00000000
--- a/vim/config/format.vim
+++ /dev/null
@@ -1,38 +0,0 @@
-" Don't assume a number with a leading zero is octal; it's far more likely a
-" zero-padded decimal, so increment and decrement with ^A and ^X on that basis
-set nrformats-=octal
-
-" Try to set the 'j' flag for 'formatoptions', to automatically delete comment
-" leaders when joining lines
-silent! set formatoptions+=j
-
-" Show the current formatoptions at a glance
-nnoremap <silent>
- \ <Leader>f
- \ :<C-U>setlocal formatoptions?<CR>
-
-" Use toggle_option_flag.vim plugin to bind quick toggle actions for some
-" 'formatoptions' flags
-if has('user_commands')
-
- " a: Reformat paragraphs to 'textwidth' on all insert or delete operations
- nnoremap <silent>
- \ <Leader>a
- \ :<C-U>ToggleOptionFlagLocal formatoptions a<CR>
-
- " c: Reformat comments to 'textwidth'
- nnoremap <silent>
- \ <Leader>c
- \ :<C-U>ToggleOptionFlagLocal formatoptions c<CR>
-
- " j: Delete comment leaders when joining lines
- nnoremap <silent>
- \ <Leader>j
- \ :<C-U>ToggleOptionFlagLocal formatoptions j<CR>
-
- " t: Reformat non-comment text to 'textwidth'
- nnoremap <silent>
- \ <Leader>t
- \ :<C-U>ToggleOptionFlagLocal formatoptions t<CR>
-
-endif