aboutsummaryrefslogtreecommitdiff
path: root/content/notes/extending-dte-editor.md
diff options
context:
space:
mode:
Diffstat (limited to 'content/notes/extending-dte-editor.md')
-rw-r--r--content/notes/extending-dte-editor.md15
1 files changed, 8 insertions, 7 deletions
diff --git a/content/notes/extending-dte-editor.md b/content/notes/extending-dte-editor.md
index d23cbc7..161c104 100644
--- a/content/notes/extending-dte-editor.md
+++ b/content/notes/extending-dte-editor.md
@@ -7,13 +7,14 @@ draft: false
7tags: [dte] 7tags: [dte]
8--- 8---
9 9
10[`dte`](https://craigbarnes.gitlab.io/dte/) is an interesting editor I started using 10[`dte`](https://craigbarnes.gitlab.io/dte/) is an interesting editor I started
11lately more and more. Since it is using [`execvp()`](https://linux.die.net/man/3/execvp) 11using lately more and more. Since it is using
12it can be easily extended. I needed comment/uncomment feature so I created a 12[`execvp()`](https://linux.die.net/man/3/execvp) it can be easily extended. I
13small utility that does this for me. Code lives on repository 13needed comment/uncomment feature so I created a small utility that does this for
14[dte extensions](https://git.mitjafelicijan.com/dte-extensions.git/about/) 14me. Code lives on repository [dte
15but this utilities can be used for whatever you want. Make sure you have 15extensions](https://git.mitjafelicijan.com/dte-extensions.git/about/) but this
16version 1.11 or above. 16utilities can be used for whatever you want. Make sure you have version 1.11 or
17above.
17 18
18Next one will be invoking formatter based on the type of a file. 19Next one will be invoking formatter based on the type of a file.
19 20