Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/tweekmonster/exception.vim
- Owner: tweekmonster
- Created: 2017-01-30T14:48:34.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-06-11T18:42:52.000Z (over 1 year ago)
- Last Synced: 2024-11-02T07:41:59.034Z (13 days ago)
- Topics: errors, neovim, stack-traces, vim, vim-plugins, viml-scripts
- Language: Vim script
- Homepage:
- Size: 1000 Bytes
- Stars: 24
- Watchers: 3
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
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)