Implement a preview window for selecting locations to open

This commit is contained in:
w0rp
2018-04-22 15:53:01 +01:00
parent d8a673515a
commit 87ad4dfbe7
6 changed files with 104 additions and 25 deletions

View File

@@ -0,0 +1,11 @@
if exists('b:current_syntax')
finish
endif
syn match alePreviewSelectionFilename /\v^([a-zA-Z]?:?[^:]+)/
syn match alPreviewNumber /\v:\d+:\d+$/
hi def link alePreviewSelectionFilename String
hi def link alePreviewNumber Number
let b:current_syntax = 'ale-preview-selection'