aboutsummaryrefslogtreecommitdiff
path: root/content/notes/extending-dte-editor.md
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2023-06-27 14:50:20 +0200
committerMitja Felicijan <mitja.felicijan@gmail.com>2023-06-27 14:50:20 +0200
commit8697555125c57ae64a0c9b78514b4aac4fd523de (patch)
treea699df53a7c35a4425f30bca86982c4341f6de40 /content/notes/extending-dte-editor.md
parent33b2615a5038bc85036081e8b5e0da8584d88097 (diff)
downloadmitjafelicijan.com-8697555125c57ae64a0c9b78514b4aac4fd523de.tar.gz
Massive formatting and added figcaption
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