vim-endwise icon indicating copy to clipboard operation
vim-endwise copied to clipboard

endwise.vim: Wisely add

Results 23 vim-endwise issues
Sort by recently updated
recently updated
newest added

In OCaml the blocks are written line ```ocaml do ... done ``` A support for this?

Any chance of adding PHP support? e.g. ``` for (...) //code endfor; ```

CMake has the following end-wise pairings: * `foreach()` / `endforeach()` * `function()` / `endfunction()` * `if()` / `endif()` * `macro()` / `endmacro()` * `while()` / `endwhile()` The `end` forms can...

Python, CoffeeScript and Elixir allows `"""` for multiline strings, such as: ``` elixir @doc """ This is a long string It spans multiple lines """ ``` It makes sense to...

It would be nice if Endwise could turn the following: ``` erb | ``` into the following: ``` erb | ``` (with | being the cursor)

Just IF, LOOP and BEGIN for now, that should cover a large number of cases.

- Use `` maps, catch already-exists error and provide help - Prefer remapping of `` over `` - Only call `maparg` once

Would it be possible to have commented-out class/module/method names automatically added behind `end` keywords? Example: ``` module Module class Superclass class Subclass def foo end # def foo end #...

$('bleh').click(function() { |(cursor here) , possibility to add missing ; ? })

It would be nice if it emulated the behaviour of paren-matching plugins that skip over the closing parenthesis if you enter it, rather than inserting a new one. For example:...