Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/sentriz/vim-print-debug

assisted printf debugging for vim
https://github.com/sentriz/vim-print-debug

debugging vim vim-plugin

Last synced: about 2 months ago
JSON representation

assisted printf debugging for vim

Awesome Lists containing this project

README

        

# vim-print-debug

![](.github/demo.gif)

automatic "printf" style debugging for vim.
each new call returns a unique line with incrementing chars. eg "aaa", "bbb", "ccc".

it also leaves the print statements in a format where it's easy to add some variable interpolation.

this plugin is only for extreme professionals 😎

## install

with your favourite plugin manager, `sentriz/vim-print-debug`.
or just copy the source into your vimrc.

and add a mapping:
```vim
nnoremap p :call print_debug#print_debug()
```

## settings

#### `g:print_debug_default`

- desc: template to use if no language was found
- default:
```vim
let g:print_debug_default = '"{}"'
```

#### `g:print_debug_templates`

- desc: debug line templates for different filetypes. (see `:echo &filetype`)
- default:
```vim
let g:print_debug_templates = {
\ 'go': 'fmt.Printf("+++ {}\n")',
\ 'python': 'print(f"+++ {}")',
\ 'javascript': 'console.log(`+++ {}`);',
\ 'c': 'printf("+++ {}\n");',
\ }
```