@@ -173,6 +173,7 @@ you call this function with no values the defaults will be used:
173173 toggle_resolved = "p" -- Toggles the resolved status of the whole discussion
174174 position = "left", -- "top", "right", "bottom" or "left"
175175 open_in_browser = "b" -- Jump to the URL of the current note/discussion
176+ copy_node_url = "u", -- Copy the URL of the current node to clipboard
176177 size = "20%", -- Size of split
177178 relative = "editor", -- Position of tree split relative to "editor" or "window"
178179 resolved = '✓', -- Symbol to show next to resolved discussions
@@ -551,7 +552,7 @@ you can also interact with the Go server like any other process:
551552LUA API *gitlab.nvim.api*
552553
553554 *gitlab.nvim.setup*
554- setup() ~
555+ gitlab. setup() ~
555556
556557Call this first to initialize the plugin. With no arguments, it will use the
557558default arguments outlined under "Configuring the Plugin".
@@ -563,15 +564,15 @@ default arguments outlined under "Configuring the Plugin".
563564 require("gitlab").setup({ discussion_tree = { blacklist = { "some_bot"} } })
564565<
565566 *gitlab.nvim.review*
566- review() ~
567+ gitlab. review() ~
567568
568569Opens the reviewer pane. Can be used from anywhere within Neovim after the
569570plugin is loaded. If run twice, will open a second reviewer pane.
570571>lua
571572 require("gitlab").review()
572573<
573574 *gitlab.nvim.summary*
574- summary() ~
575+ gitlab. summary() ~
575576
576577Opens the summary window with information about the current MR, such as the
577578description, the author, and the title. Can be configured via the `info` field
@@ -583,7 +584,7 @@ The summary can be edited. Once you have made changes, send them to Gitlab via
583584the `settings.popup .perform_action` keybinding.
584585
585586 *gitlab.nvim.approve*
586- approve() ~
587+ gitlab. approve() ~
587588
588589Approves the current MR. Will error if the current user does not have
589590permission.
@@ -604,13 +605,13 @@ gitlab.create_comment() ~
604605Opens a popup to create a comment on the current line. Must be called when focused on the
605606reviewer pane (see the gitlab.nvim.review command), otherwise it will error.
606607>lua
607- require("gitlab").comment ()
608+ require("gitlab").create_comment ()
608609
609610After the comment is typed, submit it to Gitlab via the `settings.popup .perform_action`
610611keybinding, by default `<leader> l ` .
611612
612613 *gitlab.nvim.create_multiline_comment*
613- create_multiline_comment() ~
614+ gitlab. create_multiline_comment() ~
614615
615616Opens a popup to create a multi-line comment. May only be called in visual
616617mode, and will use the currently selected lines.
@@ -621,7 +622,7 @@ After the comment is typed, submit it to Gitlab via the |settings.popup.perform_
621622keybinding, by default `<leader> l ` .
622623
623624 *gitlab.nvim.create_comment_suggestion*
624- create_comment_suggestion() ~
625+ gitlab. create_comment_suggestion() ~
625626
626627Opens a popup to create a comment suggestion (aka a comment that makes a committable
627628change suggestion to the currently selected lines).
0 commit comments