This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" File: matchr.vim | |
" Created: 2020 Jul 30 | |
" Last Change: 2020 Aug 02 | |
" Version: 0.3 | |
" Author: Andy Wokula <[email protected]> | |
" License: Vim License, see :h license | |
" NvMatchReverse({str}, {pat}) | |
" | |
" like match({str}, {pat}), but return the position of the right-most |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" File: D2567.vim | |
" Created: 2020 Jun 11 | |
" Last Change: 2020 Jun 11 | |
" Version: 0.1 | |
" Author: Andy Wokula <[email protected]> | |
" License: Vim License, see :h license | |
" Provides: sticky-digraphs | |
" Usage: (Insert mode) | |
" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" File: D2190.vim | |
" Created: 2017 Jun 30 | |
" Last Change: 2018 May 15 | |
" Version: 0.5 | |
" Author: Andy Wokula <[email protected]> | |
" License: Vim License, see :h license | |
" Dependencies: (by :PutDepend) | |
" CallOverloaded() | |
" HasPatchExpr({vimver}, {patchnr}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Emulate function overloading. | |
" File: overload.vim | |
" Created: 2014 Aug 01 | |
" Last Change: 2018 Nov 18 | |
" Version: 0.9 | |
" Author: Andy Wokula <[email protected]> | |
" License: Vim License, see :h license | |
" CallOverloaded({func-dict}, {arg-list}, {dict}) | |
" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Vim plugin - restore environment var name after filename completion | |
" General: "{{{ | |
" File: cxf_mod.vim | |
" Created: 2008 Jul 06 | |
" Last Change: 2017 Oct 14 | |
" Version: 0.6 | |
" Author: Andy Wokula <[email protected]> | |
" License: Vim license | |
" Description: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" File: mtc147.vim | |
" Created: 2019 May 06 | |
" Last Change: 2019 May 06 | |
" Version: 0.1 | |
" Author: Andy Wokula <[email protected]> | |
" License: Vim License, see :h license | |
" Description: | |
" Star-search with 'iskeyword' temporarily set to additional characters. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" File: D2307.vim | |
" Created: 2018 Jun 29 | |
" Last Change: 2018 Jun 29 | |
" Version: 0.1 | |
" Author: Andy Wokula <[email protected]> | |
" License: Vim License, see :h license | |
" Virtcols2Vartabs({virt-columns}) (copy) | |
" | |
" return differences list (list of number) from explicit virtual columns, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let g:no_bracket_maps = 1 | |
map <expr> ]] repmo#Key('<Plug>]]-motion', '<Plug>[[-motion')|sunmap ]] | |
map <expr> [[ repmo#Key('<Plug>[[-motion', '<Plug>]]-motion')|sunmap [[ | |
map <expr> ][ repmo#Key('<Plug>][-motion', '<Plug>[]-motion')|sunmap ][ | |
map <expr> [] repmo#Key('<Plug>[]-motion', '<Plug>][-motion')|sunmap [] | |
map <expr> ]m repmo#Key('<Plug>]m-motion', '<Plug>[m-motion')|sunmap ]m | |
map <expr> [m repmo#Key('<Plug>[m-motion', '<Plug>]m-motion')|sunmap [m | |
map <expr> ]M repmo#Key('<Plug>]M-motion', '<Plug>[M-motion')|sunmap ]M | |
map <expr> [M repmo#Key('<Plug>[M-motion', '<Plug>]M-motion')|sunmap [M |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Vim filetype plugin file | |
" Language: python | |
" Maintainer: Tom Picton <[email protected]> | |
" Previous Maintainer: James Sully <[email protected]> | |
" Previous Maintainer: Johannes Zellner <[email protected]> | |
" Last Change: Fri, 20 October 2017 | |
" https://github.com/tpict/vim-ftplugin-python | |
if exists("b:did_ftplugin") | finish | endif | |
let b:did_ftplugin = 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Created: 2017 Oct 21 | |
" Last Change: 2017 Oct 21 | |
" Version: 0.1 | |
" Author: Andy Wokula <[email protected]> | |
" License: Vim License, see :h license | |
" should be a full-qualified existing directory | |
if !exists("g:projects_dir") | |
let g:projects_dir = expand('$HOME/code/git') | |
endif |
NewerOlder