Home | History | Annotate | Download | only in python-vim-lldb

Lines Matching full:sign

12   # unique sign id (for ':[sign/highlight] define)
15 # unique name id (for ':sign place')
22 """ Define the sign and highlight (if applicable) and show the sign. """
24 # Get the sign name, either by defining it, or looking it up in the map of defined signs
35 """ Defines sign and highlight (if highlight_colour is not None). """
36 sign_name = "sign%d" % VimSign.name_id
38 vim.command("sign define %s text=%s" % (sign_name, sign_text))
44 vim.command("sign define %s text=%s linehl=%s texthl=%s" % (sign_name,
56 vim.command("sign place %d name=%s line=%d buffer=%s" % (self.id, name, line_number, buffer_number))
60 vim.command("sign unplace %d" % self.id)