Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions data/io.elementary.code.gschema.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@
<summary>Symbol outline visibility</summary>
<description>Whether or not the symbol outline is visible</description>
</key>
<key name="last-opened-path" type="s">
<default>''</default>
<summary>Last opened path</summary>
<description>Last opened path in the terminal</description>
</key>
</schema>

<schema path="/io/elementary/code/settings/" id="io.elementary.code.settings" gettext-domain="io.elementary.code">
Expand Down
10 changes: 0 additions & 10 deletions data/io.elementary.code.plugins.terminal.gschema.xml

This file was deleted.

1 change: 0 additions & 1 deletion data/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ install_data([
install_data(
'io.elementary.code.gschema.xml',
'io.elementary.code.plugins.spell.gschema.xml',
'io.elementary.code.plugins.terminal.gschema.xml',
install_dir: join_paths(get_option('prefix'), get_option('datadir'), 'glib-2.0', 'schemas')
)

Expand Down
4 changes: 3 additions & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ git_dep = dependency('libgit2-glib-1.0')
fontconfig_dep = dependency('fontconfig')
pangofc_dep = dependency('pangoft2')
posix_dep = meson.get_compiler('vala').find_library('posix')
vte_dep = dependency('vte-2.91')

code_resources = gnome.compile_resources(
'code-resources', 'data/' + meson.project_name() + '.gresource.xml',
Expand All @@ -62,7 +63,8 @@ dependencies = [
fontconfig_dep,
pangofc_dep,
posix_dep,
vala_dep
vala_dep,
vte_dep
]

subdir('data')
Expand Down
1 change: 0 additions & 1 deletion plugins/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,5 @@ subdir('markdown-actions')
subdir('pastebin')
subdir('preserve-indent')
subdir('spell')
subdir('terminal')
subdir('vim-emulation')
subdir('word-completion')
35 changes: 0 additions & 35 deletions plugins/terminal/meson.build

This file was deleted.

10 changes: 0 additions & 10 deletions plugins/terminal/terminal.plugin

This file was deleted.

Loading