My dotfiles. Period.

mk-lh-vim-lib.vim 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. "=============================================================================
  2. " $Id: mk-lh-vim-lib.vim 606 2012-05-31 17:09:46Z luc.hermitte@gmail.com $
  3. " File: mkVba/mk-lh-lib.vim
  4. " Author: Luc Hermitte <EMAIL:hermitte {at} free {dot} fr>
  5. " <URL:http://code.google.com/p/lh-vim/>
  6. " License: GPLv3 with exceptions
  7. " <URL:http://code.google.com/p/lh-vim/wiki/License>
  8. " Version: 3.1.1
  9. let s:version = '3.1.1'
  10. " Created: 06th Nov 2007
  11. " Last Update: $Date: 2012-05-31 19:09:46 +0200 (jeu 31 mai 2012) $
  12. "------------------------------------------------------------------------
  13. cd <sfile>:p:h
  14. try
  15. let save_rtp = &rtp
  16. let &rtp = expand('<sfile>:p:h:h').','.&rtp
  17. exe '24,$MkVimball! lh-vim-lib-'.s:version
  18. set modifiable
  19. set buftype=
  20. finally
  21. let &rtp = save_rtp
  22. endtry
  23. finish
  24. autoload/lh/askvim.vim
  25. autoload/lh/buffer.vim
  26. autoload/lh/buffer/dialog.vim
  27. autoload/lh/command.vim
  28. autoload/lh/common.vim
  29. autoload/lh/encoding.vim
  30. autoload/lh/env.vim
  31. autoload/lh/event.vim
  32. autoload/lh/float.vim
  33. autoload/lh/function.vim
  34. autoload/lh/graph/tsort.vim
  35. autoload/lh/icomplete.vim
  36. autoload/lh/list.vim
  37. autoload/lh/menu.vim
  38. autoload/lh/option.vim
  39. autoload/lh/path.vim
  40. autoload/lh/position.vim
  41. autoload/lh/syntax.vim
  42. autoload/lh/visual.vim
  43. doc/lh-vim-lib.txt
  44. lh-vim-lib-addon-info.txt
  45. lh-vim-lib.README
  46. macros/menu-map.vim
  47. mkVba/mk-lh-vim-lib.vim
  48. plugin/let.vim
  49. plugin/lhvl.vim
  50. plugin/ui-functions.vim
  51. plugin/words_tools.vim
  52. tests/lh/function.vim
  53. tests/lh/list.vim
  54. tests/lh/path.vim
  55. tests/lh/test-Fargs2String.vim
  56. tests/lh/test-askmenu.vim
  57. tests/lh/test-command.vim
  58. tests/lh/test-menu-map.vim
  59. tests/lh/test-toggle-menu.vim
  60. tests/lh/topological-sort.vim