@ -0,0 +1,133 @@ | |||
<section id="branches-view" class="section--settings section--collapsible"> | |||
<div class="section__header"> | |||
<h2> | |||
Branches view | |||
<a | |||
class="link__learn-more" | |||
title="Learn more" | |||
href="https://github.com/eamodio/vscode-gitlens/tree/master/#branches-view-" | |||
> | |||
<i class="icon icon__info"></i> | |||
</a> | |||
</h2> | |||
<p class="section__header-hint">Adds a Branches view to visualize, navigate, and explore Git branches</p> | |||
</div> | |||
<div class="section__collapsible"> | |||
<div class="section__group"> | |||
<div class="section__content"> | |||
<div class="settings settings--fixed ml-1"> | |||
<div class="setting"> | |||
<div class="setting__input"> | |||
<label for="views.branches.branches.layout">Layout branches</label> | |||
<div class="select-container"> | |||
<select | |||
id="views.branches.branches.layout" | |||
name="views.branches.branches.layout" | |||
data-setting | |||
> | |||
<option value="list">as a list</option> | |||
<option value="tree">as a tree</option> | |||
</select> | |||
</div> | |||
</div> | |||
</div> | |||
<div class="setting"> | |||
<div class="setting__input"> | |||
<label for="sortBranchesBy">Sort branches</label> | |||
<div class="select-container"> | |||
<select id="sortBranchesBy" name="sortBranchesBy" data-setting> | |||
<option value="name:desc">by name, descending</option> | |||
<option value="name:asc">by name, ascending</option> | |||
<option value="date:desc">by date, descending</option> | |||
<option value="date:asc">by date, ascending</option> | |||
</select> | |||
</div> | |||
</div> | |||
</div> | |||
<div class="setting"> | |||
<div class="setting__input"> | |||
<label for="views.branches.files.layout">Layout files</label> | |||
<div class="select-container"> | |||
<select | |||
id="views.branches.files.layout" | |||
name="views.branches.files.layout" | |||
data-setting | |||
> | |||
<option value="auto">automatically</option> | |||
<option value="list">as a list</option> | |||
<option value="tree">as a tree</option> | |||
</select> | |||
</div> | |||
</div> | |||
<p class="setting__hint" data-visibility="views.branches.files.layout =auto"> | |||
Chooses the best layout based on the number of files at each nesting level | |||
</p> | |||
</div> | |||
<div class="setting"> | |||
<div class="setting__input"> | |||
<input | |||
id="views.branches.files.compact" | |||
name="views.branches.files.compact" | |||
type="checkbox" | |||
data-setting | |||
/> | |||
<label for="views.branches.files.compact">Use compact file layout</label> | |||
</div> | |||
<p class="setting__hint">Compacts (flattens) unnecessary nesting when using a tree layouts</p> | |||
</div> | |||
<div class="setting"> | |||
<div class="setting__input"> | |||
<input | |||
id="views.branches.avatars" | |||
name="views.branches.avatars" | |||
type="checkbox" | |||
data-setting | |||
/> | |||
<label for="views.branches.avatars">Use author avatars</label> | |||
</div> | |||
</div> | |||
</div> | |||
</div> | |||
<div class="section__preview"> | |||
<img | |||
class="image__preview hidden" | |||
src="#{root}/images/settings/view-branches.png" | |||
data-visibility="views.branches.files.layout !tree" | |||
/> | |||
<img | |||
class="image__preview hidden" | |||
src="#{root}/images/settings/view-branches-tree-compact.png" | |||
data-visibility="views.branches.files.layout =tree & views.branches.files.compact" | |||
/> | |||
<img | |||
class="image__preview hidden" | |||
src="#{root}/images/settings/view-branches-tree.png" | |||
data-visibility="views.branches.files.layout =tree & views.branches.files.compact =false" | |||
/> | |||
<img | |||
class="image__preview--overlay hidden" | |||
src="#{root}/images/settings/view-branches-avatars.png" | |||
data-visibility="views.branches.avatars" | |||
/> | |||
</div> | |||
</div> | |||
<div class="section__group"> | |||
<p class="section__hint"> | |||
<i class="icon icon__info"></i> For more options, open | |||
<a class="command" title="Open User Settings" href="command:workbench.action.openGlobalSettings" | |||
>User Settings</a | |||
> | |||
and search for <b><i>gitlens.views.branches</i></b> or | |||
<b><i>gitlens.views</i></b> | |||
</p> | |||
</div> | |||
</div> | |||
</section> |
@ -0,0 +1,125 @@ | |||
<section id="commits-view" class="section--settings section--collapsible"> | |||
<div class="section__header"> | |||
<h2> | |||
Commits view | |||
<a | |||
class="link__learn-more" | |||
title="Learn more" | |||
href="https://github.com/eamodio/vscode-gitlens/tree/master/#commits-view-" | |||
> | |||
<i class="icon icon__info"></i> | |||
</a> | |||
</h2> | |||
<p class="section__header-hint">Adds a Commits view to visualize, navigate, and explore Git commits</p> | |||
</div> | |||
<div class="section__collapsible"> | |||
<div class="section__group"> | |||
<div class="section__content"> | |||
<div class="settings settings--fixed ml-1"> | |||
<div class="setting"> | |||
<div class="setting__input"> | |||
<input | |||
id="views.commits.showBranchComparison" | |||
name="views.commits.showBranchComparison" | |||
type="checkbox" | |||
value="working" | |||
data-setting | |||
/> | |||
<label for="views.commits.showBranchComparison" | |||
>Show a comparison of a user-selected reference (branch, tag, etc) to the | |||
<div class="select-container"> | |||
<select | |||
id="views.commits.showBranchComparison" | |||
name="views.commits.showBranchComparison" | |||
data-setting | |||
data-enablement="views.commits.showBranchComparison !false" | |||
> | |||
<option value="branch">current branch</option> | |||
<option value="working">working tree</option> | |||
</select> | |||
</div> | |||
</label> | |||
</div> | |||
</div> | |||
<div class="setting"> | |||
<div class="setting__input"> | |||
<label for="views.commits.files.layout">Layout files</label> | |||
<div class="select-container"> | |||
<select id="views.commits.files.layout" name="views.commits.files.layout" data-setting> | |||
<option value="auto">automatically</option> | |||
<option value="list">as a list</option> | |||
<option value="tree">as a tree</option> | |||
</select> | |||
</div> | |||
</div> | |||
<p class="setting__hint" data-visibility="views.commits.files.layout =auto"> | |||
Chooses the best layout based on the number of files at each nesting level | |||
</p> | |||
</div> | |||
<div class="setting"> | |||
<div class="setting__input"> | |||
<input | |||
id="views.commits.files.compact" | |||
name="views.commits.files.compact" | |||
type="checkbox" | |||
data-setting | |||
/> | |||
<label for="views.commits.files.compact">Use compact file layout</label> | |||
</div> | |||
<p class="setting__hint">Compacts (flattens) unnecessary nesting when using a tree layouts</p> | |||
</div> | |||
<div class="setting"> | |||
<div class="setting__input"> | |||
<input | |||
id="views.commits.avatars" | |||
name="views.commits.avatars" | |||
type="checkbox" | |||
data-setting | |||
/> | |||
<label for="views.commits.avatars">Use author avatars</label> | |||
</div> | |||
</div> | |||
</div> | |||
</div> | |||
<div class="section__preview"> | |||
<img | |||
class="image__preview hidden" | |||
src="#{root}/images/settings/view-commits.png" | |||
data-visibility="views.commits.files.layout !tree" | |||
/> | |||
<img | |||
class="image__preview hidden" | |||
src="#{root}/images/settings/view-commits-tree-compact.png" | |||
data-visibility="views.commits.files.layout =tree & views.commits.files.compact" | |||
/> | |||
<img | |||
class="image__preview hidden" | |||
src="#{root}/images/settings/view-commits-tree.png" | |||
data-visibility="views.commits.files.layout =tree & views.commits.files.compact =false" | |||
/> | |||
<img | |||
class="image__preview--overlay hidden" | |||
src="#{root}/images/settings/view-commits-avatars.png" | |||
data-visibility="views.commits.avatars" | |||
/> | |||
</div> | |||
</div> | |||
<div class="section__group"> | |||
<p class="section__hint"> | |||
<i class="icon icon__info"></i> For more options, open | |||
<a class="command" title="Open User Settings" href="command:workbench.action.openGlobalSettings" | |||
>User Settings</a | |||
> | |||
and search for <b><i>gitlens.views.commits</i></b> or | |||
<b><i>gitlens.views</i></b> | |||
</p> | |||
</div> | |||
</div> | |||
</section> |
@ -0,0 +1,103 @@ | |||
<section id="contributors-view" class="section--settings section--collapsible"> | |||
<div class="section__header"> | |||
<h2> | |||
Contributors view | |||
<a | |||
class="link__learn-more" | |||
title="Learn more" | |||
href="https://github.com/eamodio/vscode-gitlens/tree/master/#contributors-view-" | |||
> | |||
<i class="icon icon__info"></i> | |||
</a> | |||
</h2> | |||
<p class="section__header-hint">Adds a Contributors view to visualize, navigate, and explore contributors</p> | |||
</div> | |||
<div class="section__collapsible"> | |||
<div class="section__group"> | |||
<div class="section__content"> | |||
<div class="settings settings--fixed ml-1"> | |||
<div class="setting"> | |||
<div class="setting__input"> | |||
<label for="views.contributors.files.layout">Layout files</label> | |||
<div class="select-container"> | |||
<select | |||
id="views.contributors.files.layout" | |||
name="views.contributors.files.layout" | |||
data-setting | |||
> | |||
<option value="auto">automatically</option> | |||
<option value="list">as a list</option> | |||
<option value="tree">as a tree</option> | |||
</select> | |||
</div> | |||
</div> | |||
<p class="setting__hint" data-visibility="views.contributors.files.layout =auto"> | |||
Chooses the best layout based on the number of files at each nesting level | |||
</p> | |||
</div> | |||
<div class="setting"> | |||
<div class="setting__input"> | |||
<input | |||
id="views.contributors.files.compact" | |||
name="views.contributors.files.compact" | |||
type="checkbox" | |||
data-setting | |||
/> | |||
<label for="views.contributors.files.compact">Use compact file layout</label> | |||
</div> | |||
<p class="setting__hint">Compacts (flattens) unnecessary nesting when using a tree layouts</p> | |||
</div> | |||
<div class="setting"> | |||
<div class="setting__input"> | |||
<input | |||
id="views.contributors.avatars" | |||
name="views.contributors.avatars" | |||
type="checkbox" | |||
data-setting | |||
/> | |||
<label for="views.contributors.avatars">Use author avatars</label> | |||
</div> | |||
</div> | |||
</div> | |||
</div> | |||
<div class="section__preview"> | |||
<img | |||
class="image__preview hidden" | |||
src="#{root}/images/settings/view-contributors.png" | |||
data-visibility="views.contributors.files.layout !tree" | |||
/> | |||
<img | |||
class="image__preview hidden" | |||
src="#{root}/images/settings/view-contributors-tree-compact.png" | |||
data-visibility="views.contributors.files.layout =tree & views.contributors.files.compact" | |||
/> | |||
<img | |||
class="image__preview hidden" | |||
src="#{root}/images/settings/view-contributors-tree.png" | |||
data-visibility="views.contributors.files.layout =tree & views.contributors.files.compact =false" | |||
/> | |||
<img | |||
class="image__preview--overlay hidden" | |||
src="#{root}/images/settings/view-contributors-avatars.png" | |||
data-visibility="views.contributors.avatars" | |||
/> | |||
</div> | |||
</div> | |||
<div class="section__group"> | |||
<p class="section__hint"> | |||
<i class="icon icon__info"></i> For more options, open | |||
<a class="command" title="Open User Settings" href="command:workbench.action.openGlobalSettings" | |||
>User Settings</a | |||
> | |||
and search for <b><i>gitlens.views.contributors</i></b> or | |||
<b><i>gitlens.views</i></b> | |||
</p> | |||
</div> | |||
</div> | |||
</section> |
@ -0,0 +1,129 @@ | |||
<section id="remotes-view" class="section--settings section--collapsible"> | |||
<div class="section__header"> | |||
<h2> | |||
Remotes view | |||
<a | |||
class="link__learn-more" | |||
title="Learn more" | |||
href="https://github.com/eamodio/vscode-gitlens/tree/master/#remotes-view-" | |||
> | |||
<i class="icon icon__info"></i> | |||
</a> | |||
</h2> | |||
<p class="section__header-hint">Adds a Remotes view to visualize, navigate, and explore Git remotes</p> | |||
</div> | |||
<div class="section__collapsible"> | |||
<div class="section__group"> | |||
<div class="section__content"> | |||
<div class="settings settings--fixed ml-1"> | |||
<div class="setting"> | |||
<div class="setting__input"> | |||
<label for="views.remotes.branches.layout">Layout branches</label> | |||
<div class="select-container"> | |||
<select | |||
id="views.remotes.branches.layout" | |||
name="views.remotes.branches.layout" | |||
data-setting | |||
> | |||
<option value="list">as a list</option> | |||
<option value="tree">as a tree</option> | |||
</select> | |||
</div> | |||
</div> | |||
</div> | |||
<div class="setting"> | |||
<div class="setting__input"> | |||
<label for="sortBranchesBy">Sort branches</label> | |||
<div class="select-container"> | |||
<select id="sortBranchesBy" name="sortBranchesBy" data-setting> | |||
<option value="name:desc">by name, descending</option> | |||
<option value="name:asc">by name, ascending</option> | |||
<option value="date:desc">by date, descending</option> | |||
<option value="date:asc">by date, ascending</option> | |||
</select> | |||
</div> | |||
</div> | |||
</div> | |||
<div class="setting"> | |||
<div class="setting__input"> | |||
<label for="views.remotes.files.layout">Layout files</label> | |||
<div class="select-container"> | |||
<select id="views.remotes.files.layout" name="views.remotes.files.layout" data-setting> | |||
<option value="auto">automatically</option> | |||
<option value="list">as a list</option> | |||
<option value="tree">as a tree</option> | |||
</select> | |||
</div> | |||
</div> | |||
<p class="setting__hint" data-visibility="views.remotes.files.layout =auto"> | |||
Chooses the best layout based on the number of files at each nesting level | |||
</p> | |||
</div> | |||
<div class="setting"> | |||
<div class="setting__input"> | |||
<input | |||
id="views.remotes.files.compact" | |||
name="views.remotes.files.compact" | |||
type="checkbox" | |||
data-setting | |||
/> | |||
<label for="views.remotes.files.compact">Use compact file layout</label> | |||
</div> | |||
<p class="setting__hint">Compacts (flattens) unnecessary nesting when using a tree layouts</p> | |||
</div> | |||
<div class="setting"> | |||
<div class="setting__input"> | |||
<input | |||
id="views.remotes.avatars" | |||
name="views.remotes.avatars" | |||
type="checkbox" | |||
data-setting | |||
/> | |||
<label for="views.remotes.avatars">Use author avatars</label> | |||
</div> | |||
</div> | |||
</div> | |||
</div> | |||
<div class="section__preview"> | |||
<img | |||
class="image__preview hidden" | |||
src="#{root}/images/settings/view-remotes.png" | |||
data-visibility="views.remotes.files.layout !tree" | |||
/> | |||
<img | |||
class="image__preview hidden" | |||
src="#{root}/images/settings/view-remotes-tree-compact.png" | |||
data-visibility="views.remotes.files.layout =tree & views.remotes.files.compact" | |||
/> | |||
<img | |||
class="image__preview hidden" | |||
src="#{root}/images/settings/view-remotes-tree.png" | |||
data-visibility="views.remotes.files.layout =tree & views.remotes.files.compact =false" | |||
/> | |||
<img | |||
class="image__preview--overlay hidden" | |||
src="#{root}/images/settings/view-remotes-avatars.png" | |||
data-visibility="views.remotes.avatars" | |||
/> | |||
</div> | |||
</div> | |||
<div class="section__group"> | |||
<p class="section__hint"> | |||
<i class="icon icon__info"></i> For more options, open | |||
<a class="command" title="Open User Settings" href="command:workbench.action.openGlobalSettings" | |||
>User Settings</a | |||
> | |||
and search for <b><i>gitlens.views.remotes</i></b> or | |||
<b><i>gitlens.views</i></b> | |||
</p> | |||
</div> | |||
</div> | |||
</section> |
@ -0,0 +1,82 @@ | |||
<section id="stashes-view" class="section--settings section--collapsible"> | |||
<div class="section__header"> | |||
<h2> | |||
Stashes view | |||
<a | |||
class="link__learn-more" | |||
title="Learn more" | |||
href="https://github.com/eamodio/vscode-gitlens/tree/master/#stashes-view-" | |||
> | |||
<i class="icon icon__info"></i> | |||
</a> | |||
</h2> | |||
<p class="section__header-hint">Adds a Stashes view to visualize, navigate, and explore Git stashes</p> | |||
</div> | |||
<div class="section__collapsible"> | |||
<div class="section__group"> | |||
<div class="section__content"> | |||
<div class="settings settings--fixed ml-1"> | |||
<div class="setting"> | |||
<div class="setting__input"> | |||
<label for="views.stashes.files.layout">Layout files</label> | |||
<div class="select-container"> | |||
<select id="views.stashes.files.layout" name="views.stashes.files.layout" data-setting> | |||
<option value="auto">automatically</option> | |||
<option value="list">as a list</option> | |||
<option value="tree">as a tree</option> | |||
</select> | |||
</div> | |||
</div> | |||
<p class="setting__hint" data-visibility="views.stashes.files.layout =auto"> | |||
Chooses the best layout based on the number of files at each nesting level | |||
</p> | |||
</div> | |||
<div class="setting"> | |||
<div class="setting__input"> | |||
<input | |||
id="views.stashes.files.compact" | |||
name="views.stashes.files.compact" | |||
type="checkbox" | |||
data-setting | |||
/> | |||
<label for="views.stashes.files.compact">Use compact file layout</label> | |||
</div> | |||
<p class="setting__hint">Compacts (flattens) unnecessary nesting when using a tree layouts</p> | |||
</div> | |||
</div> | |||
</div> | |||
<div class="section__preview"> | |||
<img | |||
class="image__preview hidden" | |||
src="#{root}/images/settings/view-stashes.png" | |||
data-visibility="views.stashes.files.layout !tree" | |||
/> | |||
<img | |||
class="image__preview hidden" | |||
src="#{root}/images/settings/view-stashes-tree-compact.png" | |||
data-visibility="views.stashes.files.layout =tree & views.stashes.files.compact" | |||
/> | |||
<img | |||
class="image__preview hidden" | |||
src="#{root}/images/settings/view-stashes-tree.png" | |||
data-visibility="views.stashes.files.layout =tree & views.stashes.files.compact =false" | |||
/> | |||
</div> | |||
</div> | |||
<div class="section__group"> | |||
<p class="section__hint"> | |||
<i class="icon icon__info"></i> For more options, open | |||
<a class="command" title="Open User Settings" href="command:workbench.action.openGlobalSettings" | |||
>User Settings</a | |||
> | |||
and search for <b><i>gitlens.views.stashes</i></b> or | |||
<b><i>gitlens.views</i></b> | |||
</p> | |||
</div> | |||
</div> | |||
</section> |
@ -0,0 +1,120 @@ | |||
<section id="tags-view" class="section--settings section--collapsible"> | |||
<div class="section__header"> | |||
<h2> | |||
Tags view | |||
<a | |||
class="link__learn-more" | |||
title="Learn more" | |||
href="https://github.com/eamodio/vscode-gitlens/tree/master/#tags-view-" | |||
> | |||
<i class="icon icon__info"></i> | |||
</a> | |||
</h2> | |||
<p class="section__header-hint">Adds a Tags view to visualize, navigate, and explore Git tags</p> | |||
</div> | |||
<div class="section__collapsible"> | |||
<div class="section__group"> | |||
<div class="section__content"> | |||
<div class="settings settings--fixed ml-1"> | |||
<div class="setting"> | |||
<div class="setting__input"> | |||
<label for="views.tags.branches.layout">Layout tags</label> | |||
<div class="select-container"> | |||
<select id="views.tags.branches.layout" name="views.tags.branches.layout" data-setting> | |||
<option value="list">as a list</option> | |||
<option value="tree">as a tree</option> | |||
</select> | |||
</div> | |||
</div> | |||
</div> | |||
<div class="setting"> | |||
<div class="setting__input"> | |||
<label for="sortTagsBy">Sort tags</label> | |||
<div class="select-container"> | |||
<select id="sortTagsBy" name="sortTagsBy" data-setting> | |||
<option value="name:desc">by name, descending</option> | |||
<option value="name:asc">by name, ascending</option> | |||
<option value="date:desc">by date, descending</option> | |||
<option value="date:asc">by date, ascending</option> | |||
</select> | |||
</div> | |||
</div> | |||
</div> | |||
<div class="setting"> | |||
<div class="setting__input"> | |||
<label for="views.tags.files.layout">Layout files</label> | |||
<div class="select-container"> | |||
<select id="views.tags.files.layout" name="views.tags.files.layout" data-setting> | |||
<option value="auto">automatically</option> | |||
<option value="list">as a list</option> | |||
<option value="tree">as a tree</option> | |||
</select> | |||
</div> | |||
</div> | |||
<p class="setting__hint" data-visibility="views.tags.files.layout =auto"> | |||
Chooses the best layout based on the number of files at each nesting level | |||
</p> | |||
</div> | |||
<div class="setting"> | |||
<div class="setting__input"> | |||
<input | |||
id="views.tags.files.compact" | |||
name="views.tags.files.compact" | |||
type="checkbox" | |||
data-setting | |||
/> | |||
<label for="views.tags.files.compact">Use compact file layout</label> | |||
</div> | |||
<p class="setting__hint">Compacts (flattens) unnecessary nesting when using a tree layouts</p> | |||
</div> | |||
<div class="setting"> | |||
<div class="setting__input"> | |||
<input id="views.tags.avatars" name="views.tags.avatars" type="checkbox" data-setting /> | |||
<label for="views.tags.avatars">Use author avatars</label> | |||
</div> | |||
</div> | |||
</div> | |||
</div> | |||
<div class="section__preview"> | |||
<img | |||
class="image__preview hidden" | |||
src="#{root}/images/settings/view-tags.png" | |||
data-visibility="views.tags.files.layout !tree" | |||
/> | |||
<img | |||
class="image__preview hidden" | |||
src="#{root}/images/settings/view-tags-tree-compact.png" | |||
data-visibility="views.tags.files.layout =tree & views.tags.files.compact" | |||
/> | |||
<img | |||
class="image__preview hidden" | |||
src="#{root}/images/settings/view-tags-tree.png" | |||
data-visibility="views.tags.files.layout =tree & views.tags.files.compact =false" | |||
/> | |||
<img | |||
class="image__preview--overlay hidden" | |||
src="#{root}/images/settings/view-tags-avatars.png" | |||
data-visibility="views.tags.avatars" | |||
/> | |||
</div> | |||
</div> | |||
<div class="section__group"> | |||
<p class="section__hint"> | |||
<i class="icon icon__info"></i> For more options, open | |||
<a class="command" title="Open User Settings" href="command:workbench.action.openGlobalSettings" | |||
>User Settings</a | |||
> | |||
and search for <b><i>gitlens.views.tags</i></b> or | |||
<b><i>gitlens.views</i></b> | |||
</p> | |||
</div> | |||
</div> | |||
</section> |