Skip to content

Commit

Permalink
docs, _tplugin.vim
Browse files Browse the repository at this point in the history
  • Loading branch information
tom committed Sep 5, 2010
1 parent ec9fd0d commit 5d73ae0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
3 changes: 3 additions & 0 deletions README
Expand Up @@ -19,6 +19,9 @@ to change the following signs' definition in your |vimrc| file:
----------------------------------------------------------------------- -----------------------------------------------------------------------


Status: Works for me (there may be some minor quirks) Status: Works for me (there may be some minor quirks)
Dependencies:
tlib :: http://github.com/tomtom/tlib_vim
> git clone git://github.com/tomtom/tlib_vim.git
Install: See http://github.com/tomtom/vimtlib/blob/master/INSTALL.TXT Install: See http://github.com/tomtom/vimtlib/blob/master/INSTALL.TXT
See http://github.com/tomtom for related plugins. See http://github.com/tomtom for related plugins.


2 changes: 2 additions & 0 deletions _tplugin.vim
@@ -0,0 +1,2 @@
TPluginBefore \<quickfixsigns_vim[\/]autoload[\/] TPlugin tlib_vim
TPluginBefore \<quickfixsigns_vim[\/]autoload[\/] TPlugin quickfixsigns_vim
12 changes: 6 additions & 6 deletions doc/quickfixsigns.txt
Expand Up @@ -35,7 +35,7 @@ Contents~
:QuickfixsignsSet .................... |:QuickfixsignsSet| :QuickfixsignsSet .................... |:QuickfixsignsSet|
:QuickfixsignsSelect ................. |:QuickfixsignsSelect| :QuickfixsignsSelect ................. |:QuickfixsignsSelect|
g:quickfixsigns_classes .............. |g:quickfixsigns_classes| g:quickfixsigns_classes .............. |g:quickfixsigns_classes|
g:quickfixsigns_events1 .............. |g:quickfixsigns_events1| g:quickfixsigns_events ............... |g:quickfixsigns_events|
g:quickfixsigns_class_rel ............ |g:quickfixsigns_class_rel| g:quickfixsigns_class_rel ............ |g:quickfixsigns_class_rel|
g:quickfixsigns_class_qfl ............ |g:quickfixsigns_class_qfl| g:quickfixsigns_class_qfl ............ |g:quickfixsigns_class_qfl|
g:quickfixsigns_class_loc ............ |g:quickfixsigns_class_loc| g:quickfixsigns_class_loc ............ |g:quickfixsigns_class_loc|
Expand Down Expand Up @@ -99,24 +99,24 @@ g:quickfixsigns_classes (default: ['cursor', 'qfl', 'loc', 'marks', 'vcsd
event: The event on which signs of this type should be set. event: The event on which signs of this type should be set.
Possible values: BufEnter, any Possible values: BufEnter, any


*g:quickfixsigns_events1* *g:quickfixsigns_events*
g:quickfixsigns_events1 (default: ['BufEnter', 'CursorHold', 'CursorHoldI', 'InsertLeave', 'InsertEnter', 'InsertChange']) g:quickfixsigns_events (default: ['BufEnter', 'CursorHold', 'CursorHoldI', 'InsertLeave', 'InsertEnter', 'InsertChange'])
List of events for signs that should be frequently updated. List of events for signs that should be frequently updated.


*g:quickfixsigns_class_rel* *g:quickfixsigns_class_rel*
g:quickfixsigns_class_rel (default: {'sign': '*s:RelSign', 'get': 's:GetRelList("rel")', 'event': g:quickfixsigns_events1, 'max': 9, 'level': 9}) g:quickfixsigns_class_rel (default: {'sign': '*s:RelSign', 'get': 's:GetRelList("rel")', 'event': g:quickfixsigns_events, 'max': 9, 'level': 9})
Signs for number of lines relative to the current line. Signs for number of lines relative to the current line.


*g:quickfixsigns_class_qfl* *g:quickfixsigns_class_qfl*
g:quickfixsigns_class_qfl (default: {'sign': 'QFS_QFL', 'get': 'getqflist()', 'event': ['BufEnter']}) g:quickfixsigns_class_qfl (default: {'sign': 'QFS_QFL', 'get': 'getqflist()', 'event': ['BufEnter']})
Signs for |quickfix| lists. Signs for |quickfix| lists.


*g:quickfixsigns_class_loc* *g:quickfixsigns_class_loc*
g:quickfixsigns_class_loc (default: {'sign': 'QFS_LOC', 'get': 'getloclist(winnr())', 'event': ['BufEnter']}) g:quickfixsigns_class_loc (default: {'sign': 'QFS_LOC', 'get': 'getloclist(0)', 'event': ['BufEnter']})
Signs for |location| lists. Signs for |location| lists.


*g:quickfixsigns_class_cursor* *g:quickfixsigns_class_cursor*
g:quickfixsigns_class_cursor (default: {'sign': 'QFS_CURSOR', 'get': 's:GetCursor()', 'event': g:quickfixsigns_events1}) g:quickfixsigns_class_cursor (default: {'sign': 'QFS_CURSOR', 'get': 's:GetCursor()', 'event': g:quickfixsigns_events})
Sign for the current cursor position Sign for the current cursor position


*g:quickfixsigns_balloon* *g:quickfixsigns_balloon*
Expand Down

0 comments on commit 5d73ae0

Please sign in to comment.