Miscellaneous Bug Fixes (#423)

fix: Show non-resolvable notes in winbar (#417)
fix: add more emojis and make emoji picker configurable (#414)
fix: comment creation should not be possible for renamed and moved files (#416)
fix: color highlight groups are invalid (#421)
fix: plugin failing to build on Windows (#419)

---------

Co-authored-by: Jakub F. Bortlík <jakub.bortlik@proton.me>
This commit is contained in:
Harrison (Harry) Cramer
2024-11-12 11:01:28 -05:00
committed by GitHub
parent 30daecfb60
commit be027331e1
17 changed files with 221 additions and 11079 deletions

View File

@@ -266,6 +266,17 @@ you call this function with no values the defaults will be used:
winbar = nil -- Custom function to return winbar title, should return a string. Provided with WinbarTable (defined in annotations.lua)
-- If using lualine, please add "gitlab" to disabled file types, otherwise you will not see the winbar.
},
emojis = {
-- Function for modifying how emojis are displayed in the picker. This does not affect the actual selected emoji.
-- The function is passed an emoji object as a paramter, e.g.,
-- {"unicode": "1F44D","name": "thumbs up sign", "shortname": ":thumbsup:", "moji": "👍"}
-- This is useful if your editor/terminal/font/tmux does not render some emojis properly,
-- e.g., you can remove skin tones and additionally show the shortname with
-- formatter = function(val)
-- return string.format("%s %s %s", val.moji:gsub("[\240][\159][\143][\187-\191]", ""), val.shortname, val.name)
-- end
formatter = nil,
},
choose_merge_request = {
open_reviewer = true, -- Open the reviewer window automatically after switching merge requests
},