aboutsummaryrefslogtreecommitdiff
path: root/vim/bundle/tlib_vim/autoload/tlib/dictionary.vim
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2016-06-30 16:11:56 +0200
committerKarel Kočí <cynerd@email.cz>2016-06-30 16:11:56 +0200
commit9931e0888b2419326ae10ebbfae532261c5c125f (patch)
tree7504be5daccbb7b7d1ea396754de47b11ed790e5 /vim/bundle/tlib_vim/autoload/tlib/dictionary.vim
parente573b3020c032400eed60b649a2cbf55266e6bb0 (diff)
downloadmyconfigs-9931e0888b2419326ae10ebbfae532261c5c125f.tar.gz
myconfigs-9931e0888b2419326ae10ebbfae532261c5c125f.tar.bz2
myconfigs-9931e0888b2419326ae10ebbfae532261c5c125f.zip
Fix submodules
Diffstat (limited to 'vim/bundle/tlib_vim/autoload/tlib/dictionary.vim')
m---------vim/bundle/tlib_vim0
-rw-r--r--vim/bundle/tlib_vim/autoload/tlib/dictionary.vim45
2 files changed, 0 insertions, 45 deletions
diff --git a/vim/bundle/tlib_vim b/vim/bundle/tlib_vim
new file mode 160000
+Subproject 5636472e5dba1a4104376ce6bd93cc2546e0248
diff --git a/vim/bundle/tlib_vim/autoload/tlib/dictionary.vim b/vim/bundle/tlib_vim/autoload/tlib/dictionary.vim
deleted file mode 100644
index a778519..0000000
--- a/vim/bundle/tlib_vim/autoload/tlib/dictionary.vim
+++ /dev/null
@@ -1,45 +0,0 @@
-" @Author: Tom Link (mailto:micathom AT gmail com?subject=[vim])
-" @Website: https://github.com/tomtom
-" @License: GPL (see http://www.gnu.org/licenses/gpl.txt)
-" @Last Change: 2016-04-06
-" @Revision: 22
-
-
-" :display: tlib#dictionary#Rev(dict, ?opts = {}) abort "{{{3
-function! tlib#dictionary#Rev(dict, ...) abort "{{{3
- let opts = a:0 >= 1 ? a:1 : {}
- Tlibtype a:dict, 'dict', opts, 'dict'
- let rev = {}
- let use_string = get(opts, 'use_string', 0)
- let use_eval = get(opts, 'use_eval', 0)
- let values_as_list = get(opts, 'values_as_list', 0)
- for [m, f] in items(a:dict)
- if use_string
- let k = string(f)
- else
- let k = type(f) == 1 ? f : string(f)
- if k ==# ''
- let k = get(opts, 'empty', '')
- if empty(k)
- continue
- endif
- endif
- endif
- if use_eval
- let v = eval(m)
- else
- let v = m
- endif
- if values_as_list
- if has_key(rev, k)
- call add(rev[k], v)
- else
- let rev[k] = [v]
- endif
- else
- let rev[k] = v
- endif
- endfor
- return rev
-endf
-