Skip to content

A neovim plugin to toggle, checking/unchecking, creating and removing markdown checkboxes

License

Notifications You must be signed in to change notification settings

duckdm/mdcheck.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

A simple neovim plugin to toggle checked states for checkboxes in markdown files.

Installation

Example using lazy:

return {
  'duckdm/mdcheck.nvim',
  event = 'VeryLazy',
  --- See default config for available options
  opts = {},
  keys = {
    { '<leader>h', function()
      if require('mdcheck').has_checkbox() then
        require('mdcheck').toggle()
      else
        require('mdcheck').create()
      end
    end, { desc = 'Create or toggle checkbox' } },
  },
}

Default config

--- Checkbox states
states = {
    unchecked = "%[ %]",
    in_progress = "%[~%]",
    checked = "%[x%]"
},
--- If toggle should set checked instead of in progress from an unchecked state
toggle_checked_directly = false,

Available commands

Command Description
MdCheckToggle Toggle the checkbox under the cursor
MdCheckCheck Check the checkbox under the cursor
MdCheckInProgress Set the checkbox under the cursor to in progress
MdCheckUncheck Set the checkbox under the cursor to unchecked
MdCheckCreate Create a checkbox under the cursor
MdCheckRemove Remove the checkbox under the cursor

Available methods

local mdcheck = require('mdcheck')

--- toggle the checkbox under the cursor
mdcheck.toggle()

--- check the checkbox under the cursor
mdcheck.check()

--- set the checkbox under the cursor to in progress
mdcheck.in_progress()

--- set the checkbox under the cursor to unchecked
mdcheck.uncheck()

--- create a checkbox under the cursor
mdcheck.create()

--- remove the checkbox under the cursor
mdcheck.remove()

--- check if the line under the cursor has a checkbox
mdcheck.has_checkbox()

About

A neovim plugin to toggle, checking/unchecking, creating and removing markdown checkboxes

Topics

Resources

License

Stars

Watchers

Forks

Languages