Home > database >  Remove mark from gutter in Sublime Text
Remove mark from gutter in Sublime Text

Time:10-13

Is there any way to remove the mark from gutter. You can set mark with command/shortcut "keys": ["ctrl k", "ctrl space"], "command": "set_mark", but I cant find command to remove it. Is there any way to remove it.

enter image description here

CodePudding user response:

Clearing the mark is available from the Edit menu -> Mark -> Clear Mark, which executes:

command: clear_bookmarks {"name": "mark"}

(as can be seen with sublime.log_commands() in the ST console, or by viewing the main menu file in the Default package) This is bound to Ctrl K Ctrl G by default.

  • Related