You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> It is important to have all parts of your code accessible and to be able to just type ONE COMMAND to build and upload your CODE.
5
+
6
+
Syntax highlighting is standard for Python / C / C++ / MAkefiles.
7
+
8
+
## Software
9
+
10
+
### ViM (Vi Improved)
11
+
Once you have understood the modal behaviour of ViM and memorized a few usefull commands, it's probably the one where you stay closest to your project.
12
+
This is the one I use (for many years now).\
13
+
ViM has plugins and many useful features. One of my favourite features is completion of filenames (Cx-Cf) and of words already in your file (Cx-Cn).\
14
+
The absolte killer is typing shell commands directly. And the one thing you will defiantely miss in mosr editors, is the modeline, indicating obtions your text-file wants/needs.\
15
+
Example for Makefiles:
16
+
`#vim: noexpandtab: ts=8: softtabstop=8 `
17
+
18
+
### KATE (Advanced Text Editor)
19
+
For people who want buttons or might be scared of making errors in a terminal.\
20
+
This is the first one I used when discovering Linux.\
21
+
It has many features and plugins, file navigator and integrated terminal.\
22
+
If you activate the **build plugin**, you can define rules to use. (cf. Makefiles).\
0 commit comments