Ajout : vim/
[tool/hledger.git] / vim / autoload / neocomplcache / filters / sorter_bytes.vim
1 "=============================================================================
2 " FILE: sorter_bytes.vim
3 " AUTHOR: Julien Moutinho <julm+vim+neocomplcache@autogeree.net>
4 " Last Modified: 24 July 2014
5 " License: MIT license {{{
6 " Permission is hereby granted, free of charge, to any person obtaining
7 " a copy of this software and associated documentation files (the
8 " "Software"), to deal in the Software without restriction, including
9 " without limitation the rights to use, copy, modify, merge, publish,
10 " distribute, sublicense, and/or sell copies of the Software, and to
11 " permit persons to whom the Software is furnished to do so, subject to
12 " the following conditions:
13 "
14 " The above copyright notice and this permission notice shall be included
15 " in all copies or substantial portions of the Software.
16 "
17 " THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 " OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 " MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20 " IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
21 " CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
22 " TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
23 " SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 " }}}
25 "=============================================================================
26
27 let s:save_cpo = &cpo
28 set cpo&vim
29
30 function! neocomplcache#filters#sorter_bytes#define() "{{{
31 return s:sorter
32 endfunction"}}}
33
34 let s:sorter = {
35 \ 'name' : 'sorter_bytes',
36 \ 'description' : 'sort by matched bytes order',
37 \}
38
39 function! s:sorter.filter(context) "{{{
40 return sort(a:context.candidates, 's:compare')
41 endfunction"}}}
42
43 function! s:compare(i1, i2)
44 let diff = a:i1.word ==# a:i2.word
45 if !diff
46 let diff = (a:i1.word > a:i2.word) ? 1 : -1
47 endif
48 return diff
49 endfunction
50
51 let &cpo = s:save_cpo
52 unlet s:save_cpo
53
54 " vim: foldmethod=marker