Dark mode switch icon Light mode switch icon

Neovim logging plugin

1 min read

People debug typescript and javascript(even NodeJs) files using log statements more than they like to admit. I built a neovim plugin to do just that.

The most basic thing that the plugin does is it puts the word under cursor in a console statement. It provides few mappings to manage debugging using log statements.

Features

Installation

Supported by all package managers

Usage

<leader>wla  log word below cursor
<leader>wlb  log word above cursor
<leader>dl   remove all console logs
<leader>kl   comment out console logs
<leader>tll  toggle log level

Link to the repo.

Originally published on by Rakshith Bellare