vim-endwise
vim-endwise copied to clipboard
endwise.vim: Wisely add
Hello, how can i avoid having to type the opening delimiter in order to get automatically inserted the closing one? Given a lua example where "|" is the cursor, i'd...
Adds Fortran endwise pairings: - `program `_`name`_ / `end program `_`name`_ - `module `_`name`_ / `end module `_`name`_ - `submodule (modname1:modname2:...) `_`name`_ / `end submodule `_`name`_ - **`[prefix [type]]`**` function...
A visible popup menu will cause `` to do (effectively) nothing, instead of accepting the selected element. To reproduce: 1. Install [autocomplpop](https://github.com/vim-scripts/AutoComplPop) 2. vim test.sh 3. enter this text: #...
Hello, This plugin greatly save my coding time and I want to enjoy it with my favorite language: [Julia](http://julialang.org/). This pull request adds the support of Julia. I'm not sure...
This is cross-posting from [neocomplcache issues](https://github.com/Shougo/neocomplcache/issues/215) as recommended by @Shougo. Note that I'm also using vim-endwise. Using the recommended snippet from `doc/neocomplcache.txt` (see 351a2f102460): ``` vim inoremap my_cr_function() function! s:my_cr_function()...
I understand this solution is a little bit hacky, taking advantage of the way the `endwise_additions` are added in, so if it cannot be merged I understand. I was interested...
In latex, automatically add \end{*1} after \begin{*1}[*2]{*3}.
Here's a simple way to replicate the issue: ~~~~ruby def foo # this will not auto-close end def bar # this comment has the word end in it # this...
LaTex
Please add support for LaTex........
I was trying to add latex environment to endwise by adding the following code: ``` vim let b:endwise_addition = '\\end{\=submatch(1)}' let b:endwise_addition = 'end' let b:endwise_words = 'begin' let b:endwise_pattern...