Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tweekmonster/exception.vim

Vim plugin for tracing exceptions thrown by VimL scripts.
https://github.com/tweekmonster/exception.vim

errors neovim stack-traces vim vim-plugins viml-scripts

Last synced: 6 days ago
JSON representation

Vim plugin for tracing exceptions thrown by VimL scripts.

Awesome Lists containing this project

README

        

# exception.vim

Vim plugin for tracing exceptions thrown by VimL scripts. The most recent
exceptions are parsed and displayed in the QuickFix window.

## Usage

Call `exception#trace()` to display the call stack for the most recent
exceptions. After that, use the QuickFix commands to move through the stack.

You could also create a command:

```vim
command! WTF call exception#trace()
```

## Useful VimL dev plugins

- [vim-lookup](https://github.com/mhinz/vim-lookup)
- [helpful.vim](https://github.com/tweekmonster/helpful.vim)