From f2e01d7e513067ddb57c75f6e38cdcf434946cf8 Mon Sep 17 00:00:00 2001 From: Max Christian Pohle Date: Mon, 22 Oct 2018 00:02:58 +0200 Subject: Major refactoring for version 2.0 vim-plug has been removed and replaced with Vims internal bundle mechanism. But I already noticed, that there is also GLVM now and started trying that as well. --- plugin/AlignMapsPlugin.vim | 253 +++++++++++++++ plugin/AlignPlugin.vim | 41 +++ plugin/cecutil.vim | 482 +++++++++++++++++++++++++++++ plugin/cscope.vim | 57 ++++ plugin/jedi.vim | 15 + plugin/max-change-icon.vim | 11 + plugin/max-find-bash.vim | 9 + plugin/max-fix-colorschemes.vim | 49 +++ plugin/max-function-menu.vim | 173 +++++++++++ plugin/max-highlight-word-under-cursor.vim | 18 ++ plugin/max-set-window-title.vim | 21 ++ plugin/max-splash.vim | 23 ++ plugin/nerdtree.vim | 25 ++ plugin/netrw.vim | 16 + plugin/signify.vim | 35 +++ plugin/snippets.vim | 12 + plugin/statusline.vim | 125 ++++++++ plugin/tagbar.vim | 10 + plugin/terminal.vim | 19 ++ 19 files changed, 1394 insertions(+) create mode 100644 plugin/AlignMapsPlugin.vim create mode 100644 plugin/AlignPlugin.vim create mode 100644 plugin/cecutil.vim create mode 100644 plugin/cscope.vim create mode 100644 plugin/jedi.vim create mode 100644 plugin/max-change-icon.vim create mode 100644 plugin/max-find-bash.vim create mode 100644 plugin/max-fix-colorschemes.vim create mode 100644 plugin/max-function-menu.vim create mode 100644 plugin/max-highlight-word-under-cursor.vim create mode 100644 plugin/max-set-window-title.vim create mode 100644 plugin/max-splash.vim create mode 100644 plugin/nerdtree.vim create mode 100644 plugin/netrw.vim create mode 100644 plugin/signify.vim create mode 100644 plugin/snippets.vim create mode 100644 plugin/statusline.vim create mode 100644 plugin/tagbar.vim create mode 100644 plugin/terminal.vim (limited to 'plugin') diff --git a/plugin/AlignMapsPlugin.vim b/plugin/AlignMapsPlugin.vim new file mode 100644 index 0000000..7296f7f --- /dev/null +++ b/plugin/AlignMapsPlugin.vim @@ -0,0 +1,253 @@ +" AlignMapsPlugin: Alignment maps based upon and +" Maintainer: Dr. Charles E. Campbell. +" Date: Jan 07, 2013 +" +" NOTE: the code herein needs vim 7.0 or later +" Copyright: Copyright (C) 1999-2012 Charles E. Campbell {{{1 +" Permission is hereby granted to use and distribute this code, +" with or without modifications, provided that this copyright +" notice is copied with it. Like anything else that's free, +" AlignMaps.vim is provided *as is* and comes with no warranty +" of any kind, either expressed or implied. By using this +" plugin, you agree that in no event will the copyright +" holder be liable for any damages resulting from the use +" of this software. +" Romans 1:20 For the invisible things of Him since the creation of the {{{1 +" world are clearly seen, being perceived through the things that are +" made, even His everlasting power and divinity; that they may be +" without excuse. + +" --------------------------------------------------------------------- +" Usage: {{{1 +" Use 'a to mark beginning of to-be-aligned region, Alternative: use V +" move cursor to end of region, and execute map. (linewise visual mode) to +" The maps also set up marks 'y and 'z, and retain mark region, execute same +" 'a at the beginning of region. map. Uses 'a, 'y, and 'z. +" +" The start/end wrappers save and restore marks 'y and 'z. +" +" Although the comments indicate the maps use a leading backslash, +" actually they use (:he mapleader), so the user can +" specify that the maps start how he or she prefers. +" +" Note: these maps all use . +" +" Load Once: {{{1 +if &cp || exists("g:loaded_AlignMapsPlugin") + finish +endif +let s:keepcpo = &cpo +let g:loaded_AlignMapsPlugin = "v43" +set cpo&vim + +" ===================================================================== +" Public Interface: {{{1 +com! AlignMapsClean :call AlignMaps#AlignMapsClean() + +" ===================================================================== +" Maps: {{{1 + +" --------------------------------------------------------------------- +" WS: wrapper start map (internal) {{{2 +" Produces a blank line above and below, marks with 'y and 'z +if !hasmapto('WrapperStart') + map WS AlignMapsWrapperStart +endif +nnoremap