-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #237 from lukashornych/235-global-status-bar-support
feat(#235): global status bar support with editor and subject path statuses
- Loading branch information
Showing
87 changed files
with
1,748 additions
and
272 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<script setup lang="ts"> | ||
import Immutable from 'immutable' | ||
const props = defineProps<{ | ||
title: Immutable.List<string> | ||
}>() | ||
</script> | ||
|
||
<template> | ||
<div class="tab-toolbar-title"> | ||
<template v-for="(item, index) in title" :key="index"> | ||
<span | ||
v-if="index < title.size - 1" | ||
class="text-subtitle-1 text-disabled" | ||
> | ||
{{ item }} | ||
</span> | ||
<span v-else> | ||
{{ item }} | ||
</span> | ||
|
||
<VIcon | ||
v-if="(index + 1) < title.size" | ||
icon="mdi-chevron-right" | ||
size="16" | ||
class="mx-1" | ||
/> | ||
</template> | ||
</div> | ||
</template> | ||
|
||
<style lang="scss" scoped> | ||
.tab-toolbar-title { | ||
display: flex; | ||
align-items: center; | ||
} | ||
</style> |
39 changes: 0 additions & 39 deletions
39
src/modules/code-editor/component/VCodeEditorStatusBar.vue
This file was deleted.
Oops, something went wrong.
52 changes: 0 additions & 52 deletions
52
src/modules/code-editor/component/VCodeEditorStatusBarSelection.vue
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.