mirror of https://gitlab.com/basile.b/dexed.git
doc, terminal
This commit is contained in:
parent
64ed15f50c
commit
fabd216832
Binary file not shown.
After Width: | Height: | Size: 55 KiB |
Binary file not shown.
After Width: | Height: | Size: 30 KiB |
|
@ -10,7 +10,7 @@ title: index
|
|||
|
||||

|
||||
|
||||
This documentation is based on version 3.6.6.
|
||||
This documentation is based on version 3.6.7.
|
||||
Screenshots can be outdated but descriptions are up to date.
|
||||
|
||||
#### First steps
|
||||
|
@ -60,6 +60,7 @@ _Full description of Coedit options. May redirect to a specific widget page._
|
|||
* [Shortcuts editor](options_shortcuts_editor)
|
||||
* [Static macros](widgets_editor)
|
||||
* [Symbol list](widgets_symbol_list)
|
||||
* [Terminal](widgets_terminal)
|
||||
* [Todo list](widgets_todo_list)
|
||||
|
||||
#### Widgets
|
||||
|
@ -83,6 +84,7 @@ _Description of each widget._
|
|||
* [Process input](widgets_process_input)
|
||||
* [Search](widgets_search)
|
||||
* [Symbol list](widgets_symbol_list)
|
||||
* [Terminal](widgets_terminal)
|
||||
* [Todo list](widgets_todo_list)
|
||||
|
||||
{% raw %}
|
||||
|
|
|
@ -0,0 +1,45 @@
|
|||
---
|
||||
title: Widgets - Terminal
|
||||
---
|
||||
|
||||
{% raw %}
|
||||
<script src="//cdnjs.cloudflare.com/ajax/libs/anchor-js/4.0.0/anchor.min.js"></script>
|
||||
{% endraw %}
|
||||
|
||||
{% include xstyle.css %}
|
||||
|
||||
### Todo list
|
||||
|
||||
#### Description
|
||||
|
||||
The _Terminal_ widget is a terminal emulator integrated in the IDE. It's only available for the linux version.
|
||||
|
||||

|
||||
|
||||
The terminal requires [libvte](https://github.com/GNOME/vte) to be setup.
|
||||
This library should be available by default in the package manager of most mainstream distribution, especially those using a GNOME desktop,
|
||||
since _libvte_ is often used by the system terminal emulator of these distributions.
|
||||
|
||||
For now it's mostly usable with hardcoded shortcuts: and the mouse is only used to set the focus or select text (<kbd>SHIFT</kbd>+LeftMB to set the selection start and a second time to set the end).
|
||||
Commonly used keys are:
|
||||
- <kbd>HOME</kbd>, <kbd>END</kbd>, <kbd>CTRL</kbd>+<kbd>←</kbd>, <kbd>CTRL</kbd>+<kbd>→</kbd>: navigation.
|
||||
- <kbd>CTRL</kbd>+<kbd>INS</kbd>, <kbd>CTRL</kbd>+<kbd>SHIFT</kbd>+<kbd>INS</kbd>: copy, paste.
|
||||
- <kbd>↑</kbd>, <kbd>↓</kbd>: commands history.
|
||||
|
||||
#### Options
|
||||
|
||||

|
||||
|
||||
- **backgroundColor**: The background color.
|
||||
- **followEditors**: When checked the current directory is automatically set to the folder containing a document when it gains the focus.
|
||||
- **followProjects**: When checked the current directory is automatically set to the folder containing a project when it gains the focus.
|
||||
- **font**: Allows to customize the font name and its size. The color is not handled here.
|
||||
- **foregroundCOlor**: The font color.
|
||||
- **scrollbackLines**: The max count of previous lines that are stored.
|
||||
- **selectedColor**: The bacground when some text is selected. Selected text color is then simply inverted.
|
||||
|
||||
{% raw %}
|
||||
<script>
|
||||
anchors.add();
|
||||
</script>
|
||||
{% endraw %}
|
Loading…
Reference in New Issue