2.1.0 (#241)
• removes the <esc> keybinding for popups which was causing folks to lose their changes • deprecates the backup register. • updates go-gitlab to latest in order to get "drafts" functionality • fixes issues with labels not deleting correctly • creates a new data() function to get data from the plugin directly, see :h gitlab.nvim.data • fixes issues with line values not being computed directly, blocking jumps to/from discussion tree This is a #MINOR release.
This commit is contained in:
committed by
GitHub
parent
12c4acb297
commit
36f512cd6d
@@ -398,10 +398,6 @@ local function get_new_line(node)
|
||||
return node.new_line
|
||||
end
|
||||
|
||||
if range.start.new_line ~= nil then
|
||||
return range.start.new_line
|
||||
end
|
||||
|
||||
local _, start_new_line = common.parse_line_code(range.start.line_code)
|
||||
return start_new_line
|
||||
end
|
||||
@@ -417,10 +413,6 @@ local function get_old_line(node)
|
||||
return node.old_line
|
||||
end
|
||||
|
||||
if range.start.old_line ~= nil then
|
||||
return range.start.old_line
|
||||
end
|
||||
|
||||
local start_old_line, _ = common.parse_line_code(range.start.line_code)
|
||||
return start_old_line
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user