quickfixsigns_vim icon indicating copy to clipboard operation
quickfixsigns_vim copied to clipboard

Mark quickfix & location list items with signs

Results 9 quickfixsigns_vim issues
Sort by recently updated
recently updated
newest added

TODO: does not set/have the "sign" attribute (easily), only used with AssertUniqueSigns, where it could be removed/replaced - maybe only for the new method / if missing then?! Fixes https://github.com/tomtom/quickfixsigns_vim/issues/83.

Code ref: https://github.com/tomtom/quickfixsigns_vim/blob/653cf16034cdbbe640e63ac9698f7da587c0fa56/plugin/quickfixsigns.vim#L875 Example sign-place output: ``` ['--- Signs ---', 'Signs for foo:', ' line=99 id=3000 name=GitGutterLineModified priority=10', ' line=100 id=3001 name=GitGutterLineAdded priority=10' … ``` It should probably use the...

It would be nice if vcsdiff's `system` call could use Vim/Neovim's jobs by default, i.e. it would call the git-diff command and update the signs on exit. This likely needs...

It seems to be nice having VCS signs updated even when a file is not saved, i.e. for a modified file. I am not sure if this should be done...

When I use `:QuickfixsignsSelect loc` to clear all signs for locations marked by vim-grepper, I would expect that only the signs set for QFS_LOC_* would disappear. But instead all signs...

This allows for proper handling when resourcing the file.

With the following signs for the same line, it would be nice to get the background of the "VCS ADD" sign: ``` line=159 id=5345 name=QFS_Mark_. line=159 id=5343 name=QFS_Mark_' line=159 id=5340...

When saving a fugitive buffer, e.g. writing to the Git index for some file, the signs for the corresponding buffer in the working tree should be updated. It is possible...

TEST CASE: 1. open a (unmodified) file in a Git repository 2. delete a line (`dd`) 3. `:Gwrite` (writes the current file to the index) quickfixsigns will place a `-1`...