summaryrefslogtreecommitdiff
path: root/src/proto/sign.pro
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.3874: cannot highlight the number column for a signv8.2.3874James McCoy2021-12-221-1/+1
| | | | | Problem: Cannot highlight the number column for a sign. Solution: Add the "numhl" argument. (James McCoy, closes #9381)
* patch 8.2.3664: cannot adjust sign highlighting for 'cursorline'v8.2.3664Bram Moolenaar2021-11-241-1/+1
| | | | | | Problem: Cannot adjust sign highlighting for 'cursorline'. Solution: Add CursorLineSign and CursorLineFold highlight groups. (Gregory Anders, closes #9201)
* patch 8.1.2295: if buffer of popup is in another window cursorline sign showsv8.1.2295Bram Moolenaar2019-11-121-1/+3
| | | | | Problem: If buffer of popup is in another window cursorline sign shows. Solution: Check the group of the sign.
* patch 8.1.1718: popup menu highlighting does not look goodv8.1.1718Bram Moolenaar2019-07-201-1/+3
| | | | | | Problem: Popup menu highlighting does not look good. Solution: Highlight the whole window line. Fix that sign line HL is not displayed in a window with a background color.
* patch 8.1.1682: placing a larger number of signs is slowv8.1.1682Bram Moolenaar2019-07-131-0/+2
| | | | | | Problem: Placing a larger number of signs is slow. Solution: Add functions for dealing with a list of signs. (Yegappan Lakshmanan, closes #4636)
* patch 8.1.1631: displaying signs is inefficientv8.1.1631Bram Moolenaar2019-07-041-3/+1
| | | | | | Problem: Displaying signs is inefficient. Solution: Avoid making multiple calls to get information about a placed sign. (Yegappan Lakshmanan, closes #4586)
* patch 8.1.1608: the evalfunc.c file is too bigv8.1.1608Bram Moolenaar2019-06-291-5/+7
| | | | | Problem: The evalfunc.c file is too big. Solution: Move sign functionality to sign.c.
* patch 8.1.0866: build file dependencies are outdatedv8.1.0866Bram Moolenaar2019-02-011-1/+2
| | | | | Problem: Build file dependencies are outdated. (John Little) Solution: Run "make proto" and "make depend".
* patch 8.1.0717: there is no function for the ":sign jump" commandv8.1.0717Bram Moolenaar2019-01-111-0/+1
| | | | | Problem: There is no function for the ":sign jump" command. Solution: Add the sign_jump() function. (Yegappan Lakshmanan, closes #3780)
* patch 8.1.0673: functionality for signs is spread out over several filesv8.1.0673Bram Moolenaar2019-01-011-0/+25
Problem: Functionality for signs is spread out over several files. Solution: Move most of the sign functionality into sign.c. (Yegappan Lakshmanan, closes #3751)