aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/.vim/autoload/neomake/compat.vim
blob: d558bf7139d25ebc6c0ba9d96eee132407d8e650 (plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
" Compatibility wrappers for different (Neo)Vim versions and platforms.

if neomake#utils#IsRunningWindows()
    let g:neomake#compat#dev_null = 'NUL'
else
    let g:neomake#compat#dev_null = '/dev/null'
endif

if v:version >= 704
    function! neomake#compat#getbufvar(buf, key, def) abort
        return getbufvar(a:buf, a:key, a:def)
    endfunction
    function! neomake#compat#getwinvar(win, key, def) abort
        return getwinvar(a:win, a:key, a:def)
    endfunction
else
    function! neomake#compat#getbufvar(buf, key, def) abort
        return get(getbufvar(a:buf, ''), a:key, a:def)
    endfunction
    function! neomake#compat#getwinvar(win, key, def) abort
        return get(getwinvar(a:win, ''), a:key, a:def)
    endfunction
endif

unlockvar neomake#compat#json_true
unlockvar neomake#compat#json_false
unlockvar neomake#compat#json_null
unlockvar neomake#compat#json_none

if exists('v:none')
    let neomake#compat#json_none = v:none
else
    let neomake#compat#json_none = []
endif

if exists('*json_decode')
    let neomake#compat#json_true = v:true
    let neomake#compat#json_false = v:false
    let neomake#compat#json_null = v:null

    if has('nvim')
        function! neomake#compat#json_decode(json) abort
            if a:json is# ''
                " Prevent Neovim from throwing E474: Attempt to decode a blank string.
                return g:neomake#compat#json_none
            endif
            return json_decode(a:json)
        endfunction
    else
        function! neomake#compat#json_decode(json) abort
            return json_decode(a:json)
        endfunction
    endif
else
    let neomake#compat#json_true = 1
    let neomake#compat#json_false = 0
    function! s:json_null() abort
    endfunction
    let neomake#compat#json_null = [function('s:json_null')]

    " Via Syntastic (https://github.com/vim-syntastic/syntastic/blob/6fb14d624b6081459360fdbba743f82cf84c8f92/autoload/syntastic/preprocess.vim#L576-L607),
    " based on https://github.com/MarcWeber/vim-addon-json-encoding/blob/master/autoload/json_encoding.vim.
    " @vimlint(EVL102, 1, l:true)
    " @vimlint(EVL102, 1, l:false)
    " @vimlint(EVL102, 1, l:null)
    function! neomake#compat#json_decode(json) abort " {{{2
        if a:json ==# ''
            return g:neomake#compat#json_none
        endif

        " The following is inspired by https://github.com/MarcWeber/vim-addon-manager and
        " http://stackoverflow.com/questions/17751186/iterating-over-a-string-in-vimscript-or-parse-a-json-file/19105763#19105763
        " A hat tip to Marc Weber for this trick
        " Replace newlines, which eval() does not like.
        let json = substitute(a:json, "\n", '', 'g')
        if substitute(json, '\v\"%(\\.|[^"\\])*\"|true|false|null|[+-]?\d+%(\.\d+%([Ee][+-]?\d+)?)?', '', 'g') !~# "[^,:{}[\\] \t]"
            " JSON artifacts
            let true = g:neomake#compat#json_true
            let false = g:neomake#compat#json_false
            let null = g:neomake#compat#json_null

            try
                let object = eval(json)
            catch
                throw 'Neomake: Failed to parse JSON input: '.v:exception
            endtry
        else
            throw 'Neomake: Failed to parse JSON input: invalid input'
        endif

        return object
    endfunction " }}}2
    " @vimlint(EVL102, 0, l:true)
    " @vimlint(EVL102, 0, l:false)
    " @vimlint(EVL102, 0, l:null)
endif

lockvar neomake#compat#json_true
lockvar neomake#compat#json_false
lockvar neomake#compat#json_null

if exists('*uniq')
    function! neomake#compat#uniq(l) abort
        return uniq(a:l)
    endfunction
else
    function! neomake#compat#uniq(l) abort
        let n = len(a:l)
        if n < 2
            return a:l
        endif
        let prev = a:l[0]
        let idx = 1
        while idx < n
            if a:l[idx] ==# prev && type(a:l[idx]) == type(prev)
                call remove(a:l, idx)
                let n -= 1
            else
                let prev = a:l[idx]
                let idx += 1
            endif
        endwhile
        return a:l
    endfunction
endif

if exists('*reltimefloat')
    function! neomake#compat#reltimefloat() abort
        return reltimefloat(reltime())
    endfunction
else
    function! neomake#compat#reltimefloat() abort
        let t = split(reltimestr(reltime()), '\V.')
        return str2float(t[0] . '.' . t[1])
    endfunction
endif

" Wrapper around systemlist() that supports a list for a:cmd.
" It returns an empty string on error.
" NOTE: Neovim before 0.2.0 would throw an error (which is caught), but it
" does not set v:shell_error!
function! neomake#compat#systemlist(cmd) abort
    if empty(a:cmd)
        return []
    endif
    if has('nvim') && exists('*systemlist')
        " @vimlint(EVL108, 1)
        if !has('nvim-0.2.0')
            try
                return systemlist(a:cmd)
            catch /^Vim\%((\a\+)\)\=:E902/
                return ''
            endtry
        endif
        " @vimlint(EVL108, 0)
        return systemlist(a:cmd)
    endif

    if type(a:cmd) == type([])
        let cmd = join(map(a:cmd, 'neomake#utils#shellescape(v:val)'))
    else
        let cmd = a:cmd
    endif
    if exists('*systemlist')
        return systemlist(cmd)
    endif
    return split(system(cmd), '\n')
endfunction

function! neomake#compat#globpath_list(path, pattern, suf) abort
    if v:version >= 705 || (v:version == 704 && has('patch279'))
        return globpath(a:path, a:pattern, a:suf, 1)
    endif
    return split(globpath(a:path, a:pattern, a:suf), '\n')
endfunction

function! neomake#compat#glob_list(pattern) abort
    if v:version <= 703
        return split(glob(a:pattern, 1), '\n')
    endif
    return glob(a:pattern, 1, 1)
endfunction

if neomake#utils#IsRunningWindows()
    " Windows needs a shell to handle PATH/%PATHEXT% etc.
    function! neomake#compat#get_argv(exe, args, args_is_list) abort
        let prefix = &shell.' '.&shellcmdflag.' '
        if a:args_is_list
            if a:exe ==# &shell && get(a:args, 0) ==# &shellcmdflag
                " Remove already existing &shell/&shellcmdflag from e.g. NeomakeSh.
                let argv = join(a:args[1:])
            else
                let argv = join(map(copy([a:exe] + a:args), 'neomake#utils#shellescape(v:val)'))
            endif
        else
            let argv = a:exe . (empty(a:args) ? '' : ' '.a:args)
            if argv[0:len(prefix)-1] ==# prefix
                return argv
            endif
        endif
        return prefix.argv
    endfunction
elseif has('nvim')
    function! neomake#compat#get_argv(exe, args, args_is_list) abort
        if a:args_is_list
            return [a:exe] + a:args
        endif
        return a:exe . (empty(a:args) ? '' : ' '.a:args)
    endfunction
elseif neomake#has_async_support()  " Vim-async.
    function! neomake#compat#get_argv(exe, args, args_is_list) abort
        if a:args_is_list
            return [a:exe] + a:args
        endif
        " Use a shell to handle argv properly (Vim splits at spaces).
        let argv = a:exe . (empty(a:args) ? '' : ' '.a:args)
        return [&shell, &shellcmdflag, argv]
    endfunction
else
    " Vim (synchronously), via system().
    function! neomake#compat#get_argv(exe, args, args_is_list) abort
        if a:args_is_list
            return join(map(copy([a:exe] + a:args), 'neomake#utils#shellescape(v:val)'))
        endif
        return a:exe . (empty(a:args) ? '' : ' '.a:args)
    endfunction
endif

if v:version >= 704 || (v:version == 703 && has('patch831'))
    function! neomake#compat#gettabwinvar(t, w, v, d) abort
        return gettabwinvar(a:t, a:w, a:v, a:d)
    endfunction
else
    " Wrapper around gettabwinvar that has no default (older Vims).
    function! neomake#compat#gettabwinvar(t, w, v, d) abort
        let r = gettabwinvar(a:t, a:w, a:v)
        if r is# ''
            unlet r
            let r = a:d
        endif
        return r
    endfunction
endif

" Not really necessary for now, but allows to overwriting and extending.
if exists('*nvim_get_mode')
    function! neomake#compat#get_mode() abort
        let mode = nvim_get_mode()
        return mode.mode
    endfunction
else
    function! neomake#compat#get_mode() abort
        return mode(1)
    endfunction
endif

function! neomake#compat#in_completion() abort
    if pumvisible()
        return 1
    endif
    if has('patch-8.0.0283')
        let mode = mode(1)
        if mode[1] ==# 'c' || mode[1] ==# 'x'
            return 1
        endif
    endif
    return 0
endfunction

let s:prev_windows = []
if exists('*win_getid')
    function! neomake#compat#save_prev_windows() abort
        call add(s:prev_windows, [win_getid(winnr('#')), win_getid(winnr())])
    endfunction

    function! neomake#compat#restore_prev_windows() abort
        " Go back, maintaining the '#' window (CTRL-W_p).
        let [aw_id, pw_id] = remove(s:prev_windows, 0)
        let pw = win_id2win(pw_id)
        if !pw
            call neomake#log#debug(printf(
                        \ 'Cannot restore previous windows (previous window with ID %d not found).',
                        \ pw_id))
        elseif winnr() != pw
            let aw = win_id2win(aw_id)
            if aw
                exec aw . 'wincmd w'
            endif
            exec pw . 'wincmd w'
        endif
    endfunction
else
    function! neomake#compat#save_prev_windows() abort
        call add(s:prev_windows, [winnr('#'), winnr()])
    endfunction

    function! neomake#compat#restore_prev_windows() abort
        " Go back, maintaining the '#' window (CTRL-W_p).
        let [aw, pw] = remove(s:prev_windows, 0)
        if pw > winnr('$')
            call neomake#log#debug(printf(
                        \ 'Cannot restore previous windows (%d > %d).',
                        \ pw, winnr('$')))
        elseif winnr() != pw
            if aw
                exec aw . 'wincmd w'
            endif
            exec pw . 'wincmd w'
        endif
    endfunction
endif

if v:version >= 704 || (v:version == 703 && has('patch442'))
    function! neomake#compat#doautocmd(event) abort
        exec 'doautocmd <nomodeline> ' . a:event
    endfunction
else
    function! neomake#compat#doautocmd(event) abort
        exec 'doautocmd ' . a:event
    endfunction
endif
" vim: ts=4 sw=4 et