File: sample-plugin.plugin

package info (click to toggle)
gnome-builder 49.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 49,412 kB
  • sloc: ansic: 270,495; xml: 3,485; python: 1,863; javascript: 82; makefile: 65; sh: 21; cpp: 14
file content (28 lines) | stat: -rw-r--r-- 865 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[Plugin]

# The plugin loader to use. Currently python3 and omitting this are supported.
# Omitting the value means the "C" loader, which loads shared libraries. That
# means you can technically do C/C++/Vala.
Loader=python3


# The module to load. For python3, this means "sample_plugin.py" or
# "sample_plugin/__init__.py".
Module=sample_plugin


# Some description of the plugin
Name=A Sample Plugin
Description=A sample plugin to show how to use Builder plugins
Authors=Christian Hergert <christian@hergert.me>
Copyright=Copyright © 2015 Christian Hergert


# The following is required because we only allow builtin plugins now
Builtin=true


# We specified a completion provider in our plugin.
# Here we need to specify which languages it is active for.
# The language "ID" comes from GtkSourceView language id.
X-Completion-Provider-Languages=python,python3