Reputation: 10348
I want to use joe or jed to code in C language. Any way to have autocompletion?
Upvotes: 2
Views: 1245
Reputation: 10348
Ok. In the last hours I have learned the following (Only for jed):
Checking at Guido Gonzato's excellent Quick Reference Guide. we found:
Completion is the automatic expansion of partially-typed words. If your text contains the word
frobnication', typing
fro' followed by M-/ (M-X dabbrev) will either expand the whole word, or cycle amongst all possible completions.
It works for previously typed keywords.
A better autocompletion can be obtained through complete mode. you will need: Installing modes from Jedmodes.
Upvotes: 2
Reputation:
joe
and jed
are two completely different programs, but the answer is "not really" for both:
jed
: theoretically yes, but practically no. The home page claims that jed is "extensible in the C-like S-Lang language making the editor completely customizable". You might be able to hack in autocompletion this way, but it'd probably be more work than learning to use a better text editor.
joe
's documentation claims that you can "complete word in edit buffer by hitting ESC Enter (uses other words in buffer for dictionary)". Which is something, but it's not full autocompletion.
Upvotes: 2