aboutsummaryrefslogtreecommitdiff
path: root/vim/config/format.vim
blob: 86557a8c0f8cd7ee528c419ea6c15bdc38bb3e33 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
" 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