|
| 1 | +" ============================================================================ |
| 2 | +" File: esformatter.vim |
| 3 | +" Maintainer: Miller Medeiros <http://blog.millermedeiros.com/> |
| 4 | +" Description: Expose commands to execute the esformatter binary on normal and |
| 5 | +" visual modes. |
| 6 | +" Last Change: 2015-02-27 |
| 7 | +" License: This program is free software. It comes without any warranty, |
| 8 | +" to the extent permitted by applicable law. You can redistribute |
| 9 | +" it and/or modify it under the terms of the Do What The Fuck You |
| 10 | +" Want To Public License, Version 2, as published by Sam Hocevar. |
| 11 | +" See http://sam.zoy.org/wtfpl/COPYING for more details. |
| 12 | +" ============================================================================ |
| 13 | + |
| 14 | +" heavily inspired by: https://gist.github.com/nisaacson/6939960 |
| 15 | + |
| 16 | +if !exists('g:esformatter_debug') && (exists('loaded_esformatter') || &cp) |
| 17 | + finish |
| 18 | +endif |
| 19 | + |
| 20 | +let loaded_esformatter = 1 |
| 21 | + |
| 22 | +function! s:EsformatterNormal() |
| 23 | + " store current cursor position and change the working directory |
| 24 | + let win_view = winsaveview() |
| 25 | + let file_wd = expand('%:p:h') |
| 26 | + let current_wd = getcwd() |
| 27 | + execute ':lcd' . file_wd |
| 28 | + |
| 29 | + " pass whole buffer content to esformatter |
| 30 | + let output = system('esformatter', join(getline(1,'$'), "\n")) |
| 31 | + |
| 32 | + if v:shell_error |
| 33 | + echom "Error while executing esformatter! no changes made." |
| 34 | + echo output |
| 35 | + else |
| 36 | + " delete whole buffer content and append the formatted code |
| 37 | + normal! ggdG |
| 38 | + call append(0, split(output, "\n")) |
| 39 | + " need to delete the last line since append() will add an extra line |
| 40 | + execute ':$d' |
| 41 | + endif |
| 42 | + |
| 43 | + " Clean up: restore previous cursor position and working directory |
| 44 | + call winrestview(win_view) |
| 45 | + execute ':lcd' . current_wd |
| 46 | +endfunction |
| 47 | + |
| 48 | + |
| 49 | +function! s:EsformatterVisual() range |
| 50 | + " store current cursor position and change the working directory |
| 51 | + let win_view = winsaveview() |
| 52 | + let file_wd = expand('%:p:h') |
| 53 | + let current_wd = getcwd() |
| 54 | + execute ':lcd' . file_wd |
| 55 | + |
| 56 | + " get lines from the current selection and store the first line number |
| 57 | + let range_start = line("'<") |
| 58 | + let input = getline("'<", "'>") |
| 59 | + |
| 60 | + " if first/last lines are empty they will be removed after the formatting so |
| 61 | + " we set a flag to restore it later |
| 62 | + let restore_first_line = 0 |
| 63 | + if input[0] == '' |
| 64 | + let restore_first_line = 1 |
| 65 | + endif |
| 66 | + let restore_last_line = 0 |
| 67 | + if input[-1] == '' |
| 68 | + let restore_last_line = 1 |
| 69 | + endif |
| 70 | + |
| 71 | + let output = system('esformatter', join(input, "\n")) |
| 72 | + |
| 73 | + if v:shell_error |
| 74 | + echom 'Error while executing esformatter! no changes made.' |
| 75 | + echo output |
| 76 | + else |
| 77 | + " delete the old lines |
| 78 | + normal! gvd |
| 79 | + |
| 80 | + let new_lines = split(l:output, '\n') |
| 81 | + |
| 82 | + if 1 == restore_first_line |
| 83 | + call insert(new_lines, '') |
| 84 | + endif |
| 85 | + if 1 == restore_last_line |
| 86 | + call add(new_lines, '') |
| 87 | + endif |
| 88 | + |
| 89 | + " add new lines to the buffer |
| 90 | + call append(range_start - 1, new_lines) |
| 91 | + endif |
| 92 | + |
| 93 | + " Clean up: restore previous cursor position and working directory |
| 94 | + call winrestview(win_view) |
| 95 | + execute ':lcd' . current_wd |
| 96 | +endfunction |
| 97 | + |
| 98 | +command! -range=0 -complete=shellcmd Esformatter call s:EsformatterNormal() |
| 99 | +command! -range=% -complete=shellcmd EsformatterVisual call s:EsformatterVisual() |
0 commit comments