PreviewTag.vim : Resize preview window hieght to show "entire" tag (if a recognized type of tag)
script karma |
Rating 1/1,
Downloaded by 1011 |
Comments, bugs, improvements
|
Vim wiki
|
created by |
Gary Holloway |
|
script type |
utility |
|
description |
Basically, does a g} command to bring up the tag in the preview window.
Next, it looks at the located tag, and based on what it looks like adjusts the preview window height and posistions the file in the preview window so that the "entire" tag is shown -- in the case of a structure, the "entire" tag includes the opening brace through the closing brace. That's where the style used can have an effect. We use the style:
typedef struct foo {
int member1;
long member2;
} FooType;
So, including the line having the opening brace through the line having the
closing brace shows the entire type.
If it doesn't work with your style, it should only take some minor tweaks to
the patterns used to identify different tags to treat specially.
If the tag isn't recognized as "special", the tag is previewed "normally" (i.e., whatever g} does normally, based on your vim settings. |
|
install details |
Personally, I put it into an "autoload" directory (e.g., ~/vim/autoload), and have it sourced automagically via an autocommand:
" Auto-load functions on an as-needed basis.
autocmd FuncUndefined * exe 'runtime autoload/' . expand('<afile>') . '.vim'
|
|
script versions (upload new version)
Click on the package to download.
ip used for rating: 3.16.216.138
|