I have two concerns about the chide IDE

  • Thread starter Thread starter Eclair_de_XII
  • Start date Start date
Click For Summary
SUMMARY

The discussion centers on two primary concerns regarding the chide IDE. First, users experience garbled text appearing as boxes with numbers, likely due to character set issues, despite the system language being set to American English on Linux Mint. Second, the creation of a `gmon.out` file after each session is deemed undesirable by the user. Recommendations for alternatives include Visual Studio Code for serious use and vim with specific .vimrc settings for offline editing.

PREREQUISITES
  • Understanding of character sets and encoding issues
  • Familiarity with Linux Mint operating system
  • Basic knowledge of using text editors like vim
  • Experience with C programming and compilation processes
NEXT STEPS
  • Investigate character set configurations in Linux Mint
  • Explore Visual Studio Code features for C programming
  • Learn advanced vim configurations and plugins
  • Research alternatives to chide IDE for C development
USEFUL FOR

Developers using C programming, Linux users seeking efficient text editors, and anyone experiencing character encoding issues in their IDE.

Eclair_de_XII
Messages
1,082
Reaction score
91
TL;DR
I installed chide, and have two problems:

1. The text I input into the editor appears as garbled-up boxes of numbers.
2. Every time I close a session, a gmon.out file is created. I don't want my file-system littered with these files.

Incidentally, I am also open to alternatives to C interpreters and editors, preferably, those that are simple and lightweight.
The main concern I have right now is that whenever I open something up in chide, the letters look like boxes with numbers; the line numbers are like this, as well. I'm not sure what is going on, here. The second concern I have is that a file called `gmon.out' is created after exiting every chide session I open. I think this is undesirable, and would like to know how to stop this behavior. I understand that it is an important file, but at the same time, I don't approve of having files like this being created in my current working directory every time I open and close chide.

Screenshot_2022-02-09_21-50-29.png
 
Computer science news on Phys.org
Eclair_de_XII said:
1. The text I input into the editor appears as garbled-up boxes of numbers.
...
The main concern I have right now is that whenever I open something up in chide, the letters look like boxes with numbers; the line numbers are like this, as well. I'm not sure what is going on, here.
Looks like a problem with character sets, although I'm surprised its affecting every character including line numbers. Is your system language set to something with non-Roman numerals e.g. Arabic?

Eclair_de_XII said:
Incidentally, I am also open to alternatives to C interpreters and editors, preferably, those that are simple and lightweight.
I have never come across chide before: it doesn't look well maintained and I cannot think of a good reason to use it.

For serious use I recommend Visual Studio Code. For basic use just taking the first steps then you could look at something online like repl.it or programiz.
 
pbuk said:
Is your system language set to something with non-Roman numerals e.g. Arabic?
It's set to American English. I'm also running Linux Mint, but I'm unsure if it is relevant to the problem.

pbuk said:
For basic use just taking the first steps then you could look at something online like repl.it or programiz.
Thanks for the recommendations. But I should have specified that I was looking for offline editors.
 
In the end, I decided to just go with vim with the .vimrc settings:

set nocp
set expandtab
set tabstop=4
set shiftwidth=0
map <F5> :!myfile=%; if [ "${myfile: -4}" == ".tex" ]; then etex $myfile && xreader ${myfile/.tex/.dvi}; elif [ "${myfile: -3}" == ".py" ]; then python3 $myfile; elif [ "${myfile: -2}" == ".c" ]; then gcc -o "${myfile:: -2}" $myfile && ./"${myfile:: -2}"; fi;
 

Similar threads

  • · Replies 24 ·
Replies
24
Views
10K
  • · Replies 20 ·
Replies
20
Views
3K
Replies
15
Views
10K
Replies
1
Views
5K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 16 ·
Replies
16
Views
4K
  • · Replies 9 ·
Replies
9
Views
3K
  • · Replies 33 ·
2
Replies
33
Views
3K
Replies
7
Views
3K
Replies
16
Views
2K