Vim Markify banner
dhruvasagar dhruvasagar

Vim Markify

Development community

Description

VIM Plugin Markify to indicate quickfix results on buffers using Signs

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

VIM Markify

A simple, lightweight plugin for marking lines using signs for entries in location list or quickfix lists. Location Lists are given preference over quickfix lists.

Change Log

Version 1.1.1

  • Fixed BalloonExpr (#1)

Version 1.1

  • Added feature for echoing of message for line under cursor. (borrowed from Syntastic). This can be enabled / disabled using the g:markify_echo_current_message option.

Version 1.0

  • Initial release, core functionality works.

Getting Started

Installation

There are 2 ways to do this

  1. I recommend installing pathogen.vim and then adding a git submodule for your plugin:
$ cd ~/.vim
$ git submodule add git@github.com:dhruvasagar/vim-markify.git bundle/markify
  1. Copy plugin/todo-mode.vim, doc/todo-mode.txt to respective ~/.vim/plugin and ~/.vim/doc under UNIX or vimfiles/plugin/ and vimfiles/doc under WINDOWS and restart VIM

Usage

When you have `g:markify_autocmd = 1` (default), then markify is run on `QuickFixCmdPost` event and marks the lines with signs automatically.

Markify can distinguish between errors, warnings & info messages and uses different signs for each. By default it uses '>>' to display in the signcolumn, however this can be changed.

If you don't wish to have markify work all the time, you can set `g:markify_autocmd = 0` in your $VIMRC. You can call `:Markify` to process the current location list or quickfix list ( location lists are given preference ) and add the signs. You can call `:MarkifyClear` to clear the signs set by Markify and you can also use `:MarkifyToggle` to toggle the same.

Check `:h markify` for more details.

Contributing

Reporting an Issue :

Contributing to code :