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 29 30 31 32 33 34 35 36 37 38 39
|
# pluma-plugins


## General Information
A set set of plugins for Pluma, the MATE text editor. The package *pluma-plugins* started as a fork of *gedit-plugins*.
Currently available plugins:
- **bookmarks** - *Easy document navigation with bookmarks.*
- **bracketcompletion** - *Automatically adds closing brackets.*
- **codecomment** - *Comment and uncomment blocks of code.*
- **quickhighlight** - *Highlights every occurrences of selected text*
- **smartspaces** - *Forget you’re not using tabulations.*
- **sourcecodebrowser** - *View and navigate functions, variables and namespaces*
- **synctex** - *SyncTeX synchronization of TeX files and PDF output.*
- **terminal** - *Embed a terminal in the bottom pane.*
- **wordcompletion** - *Word completion using the completion framework.*
Note:
- The *synctex* plugin requires `dbus-python` (>= 0.82).
- The *terminal* plugin requires the `VTE` (>= 2.91) library.
- The *sourcecodebrowser* plugin requires `ctags` at runtime.
See the Pluma [README](https://github.com/mate-desktop/pluma/blob/master/README.md) file for more information.
## Installation
Simple install procedure:
```
$ ./autogen.sh # Build configuration
$ make # Build
[ Become root if necessary ]
$ make install # Installation
```
|