mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-28 22:03:12 +00:00
7764a1a6f8
Add a new tab which lists the current abbreviations defined, by wrapping the `abbr` command. Work on #731.
12 lines
742 B
HTML
12 lines
742 B
HTML
<div id="table_filter_container" style="display: block;">
|
|
<input id="table_filter_text_box" class="filter_text_box text_box_transient" placeholder="Filter" ng-model="query">
|
|
</div>
|
|
|
|
<table class="data_table">
|
|
<tbody>
|
|
<tr class="data_table_row" ng-repeat="abbreviation in abbreviations | filterAbbreviations:query">
|
|
<td ng-class="{ data_table_cell: true}" style="text-align: right; padding-right: 30px;" ng-click="abbreviation._is_selected = !abbreviation._is_selected">{{ abbreviation.word }}</td>
|
|
<td ng-class="{ data_table_cell: true}" style="text-align: left; padding-right: 30px;" ng-click="abbreviation._is_selected = !abbreviation._is_selected">{{ abbreviation.phrase }}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|